@porsche-design-system/components-angular 3.31.0-rc.0 → 4.0.0-alpha.0
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/CHANGELOG.md +252 -1
- package/fesm2022/porsche-design-system-components-angular.mjs +343 -708
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/global-styles/cn/font-face.css +1 -0
- package/global-styles/cn/index.css +168 -0
- package/global-styles/font-face.css +1 -0
- package/global-styles/index.css +168 -0
- package/global-styles/legacy-radius.css +5 -0
- package/global-styles/normalize.css +11 -0
- package/global-styles/variables.css +156 -0
- package/index.d.ts +370 -986
- package/package.json +29 -8
- package/tailwindcss/index.css +174 -152
- package/tokens/cjs/index.cjs +12 -0
- package/tokens/esm/index.d.ts +1 -0
- package/tokens/esm/index.mjs +1 -0
- /package/styles/vanilla-extract/cjs/{vanilla-extract/index.cjs → index.cjs} +0 -0
- /package/styles/vanilla-extract/esm/{vanilla-extract/index.d.ts → index.d.ts} +0 -0
- /package/styles/vanilla-extract/esm/{vanilla-extract/index.mjs → index.mjs} +0 -0
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { load } from '@porsche-design-system/components-js';
|
|
2
2
|
export { componentsReady } from '@porsche-design-system/components-js';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import {
|
|
4
|
+
import { Component, ChangeDetectionStrategy, EventEmitter, forwardRef, NgModule, Optional, Injectable } from '@angular/core';
|
|
5
5
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
6
|
-
import { BehaviorSubject } from 'rxjs';
|
|
7
6
|
|
|
8
|
-
const THEME_TOKEN = new InjectionToken('pdsTheme');
|
|
9
7
|
class BaseComponent {
|
|
10
8
|
el;
|
|
11
9
|
constructor(cdr, elementRef) {
|
|
@@ -27,81 +25,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
27
25
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28
26
|
}]
|
|
29
27
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }] });
|
|
30
|
-
class BaseComponentWithTheme extends BaseComponent {
|
|
31
|
-
theme;
|
|
32
|
-
themeSubscription = inject(THEME_TOKEN).subscribe((theme) => {
|
|
33
|
-
this.el.theme = this.theme || theme;
|
|
34
|
-
});
|
|
35
|
-
ngOnDestroy() {
|
|
36
|
-
// need to manually unsubscribe or otherwise subscription is still active even after unmount
|
|
37
|
-
// https://rafaelneto.dev/en/blog/unsubscribing-behaviorsubject-observable-angular/
|
|
38
|
-
this.themeSubscription.unsubscribe();
|
|
39
|
-
}
|
|
40
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: BaseComponentWithTheme, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
41
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: BaseComponentWithTheme, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
42
|
-
}
|
|
43
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: BaseComponentWithTheme, decorators: [{
|
|
44
|
-
type: Component,
|
|
45
|
-
args: [{
|
|
46
|
-
template: '',
|
|
47
|
-
}]
|
|
48
|
-
}] });
|
|
49
28
|
|
|
50
|
-
class PAccordion extends
|
|
29
|
+
class PAccordion extends BaseComponent {
|
|
51
30
|
compact;
|
|
52
31
|
heading;
|
|
53
32
|
headingTag;
|
|
54
33
|
open;
|
|
55
34
|
size;
|
|
56
35
|
sticky;
|
|
57
|
-
/** @deprecated */
|
|
58
|
-
tag;
|
|
59
|
-
theme;
|
|
60
|
-
/** @deprecated */
|
|
61
|
-
accordionChange = new EventEmitter();
|
|
62
36
|
update = new EventEmitter();
|
|
63
37
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PAccordion, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
64
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PAccordion, isStandalone: false, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", headingTag: "headingTag", open: "open", size: "size", sticky: "sticky"
|
|
38
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PAccordion, isStandalone: false, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", headingTag: "headingTag", open: "open", size: "size", sticky: "sticky" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
65
39
|
}
|
|
66
40
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PAccordion, decorators: [{
|
|
67
41
|
type: Component,
|
|
68
42
|
args: [{
|
|
69
43
|
selector: 'p-accordion,[p-accordion]',
|
|
70
44
|
template: '<ng-content />',
|
|
71
|
-
inputs: ['compact', 'heading', 'headingTag', 'open', 'size', 'sticky'
|
|
72
|
-
outputs: ['
|
|
45
|
+
inputs: ['compact', 'heading', 'headingTag', 'open', 'size', 'sticky'],
|
|
46
|
+
outputs: ['update'],
|
|
73
47
|
standalone: false
|
|
74
48
|
}]
|
|
75
49
|
}] });
|
|
76
50
|
|
|
77
|
-
class PBanner extends
|
|
51
|
+
class PBanner extends BaseComponent {
|
|
78
52
|
description;
|
|
79
53
|
dismissButton;
|
|
80
54
|
heading;
|
|
81
55
|
headingTag;
|
|
82
56
|
open;
|
|
83
|
-
/** @deprecated */
|
|
84
|
-
persistent;
|
|
85
57
|
state;
|
|
86
|
-
theme;
|
|
87
|
-
/** @deprecated */
|
|
88
|
-
width;
|
|
89
58
|
dismiss = new EventEmitter();
|
|
90
59
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PBanner, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
91
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PBanner, isStandalone: false, selector: "p-banner,[p-banner]", inputs: { description: "description", dismissButton: "dismissButton", heading: "heading", headingTag: "headingTag", open: "open",
|
|
60
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PBanner, isStandalone: false, selector: "p-banner,[p-banner]", inputs: { description: "description", dismissButton: "dismissButton", heading: "heading", headingTag: "headingTag", open: "open", state: "state" }, outputs: { dismiss: "dismiss" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
92
61
|
}
|
|
93
62
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PBanner, decorators: [{
|
|
94
63
|
type: Component,
|
|
95
64
|
args: [{
|
|
96
65
|
selector: 'p-banner,[p-banner]',
|
|
97
66
|
template: '<ng-content />',
|
|
98
|
-
inputs: ['description', 'dismissButton', 'heading', 'headingTag', 'open', '
|
|
67
|
+
inputs: ['description', 'dismissButton', 'heading', 'headingTag', 'open', 'state'],
|
|
99
68
|
outputs: ['dismiss'],
|
|
100
69
|
standalone: false
|
|
101
70
|
}]
|
|
102
71
|
}] });
|
|
103
72
|
|
|
104
|
-
class PButton extends
|
|
73
|
+
class PButton extends BaseComponent {
|
|
105
74
|
aria;
|
|
106
75
|
compact;
|
|
107
76
|
disabled;
|
|
@@ -111,39 +80,23 @@ class PButton extends BaseComponentWithTheme {
|
|
|
111
80
|
iconSource;
|
|
112
81
|
loading;
|
|
113
82
|
name;
|
|
114
|
-
theme;
|
|
115
83
|
type;
|
|
116
84
|
value;
|
|
117
85
|
variant;
|
|
118
86
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButton, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
119
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButton, isStandalone: false, selector: "p-button,[p-button]", inputs: { aria: "aria", compact: "compact", disabled: "disabled", form: "form", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", name: "name",
|
|
87
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButton, isStandalone: false, selector: "p-button,[p-button]", inputs: { aria: "aria", compact: "compact", disabled: "disabled", form: "form", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", name: "name", type: "type", value: "value", variant: "variant" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
120
88
|
}
|
|
121
89
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButton, decorators: [{
|
|
122
90
|
type: Component,
|
|
123
91
|
args: [{
|
|
124
92
|
selector: 'p-button,[p-button]',
|
|
125
93
|
template: '<ng-content />',
|
|
126
|
-
inputs: ['aria', 'compact', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', '
|
|
127
|
-
standalone: false
|
|
128
|
-
}]
|
|
129
|
-
}] });
|
|
130
|
-
|
|
131
|
-
class PButtonGroup extends BaseComponent {
|
|
132
|
-
direction;
|
|
133
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButtonGroup, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
134
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButtonGroup, isStandalone: false, selector: "p-button-group,[p-button-group]", inputs: { direction: "direction" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
135
|
-
}
|
|
136
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
137
|
-
type: Component,
|
|
138
|
-
args: [{
|
|
139
|
-
selector: 'p-button-group,[p-button-group]',
|
|
140
|
-
template: '<ng-content />',
|
|
141
|
-
inputs: ['direction'],
|
|
94
|
+
inputs: ['aria', 'compact', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'type', 'value', 'variant'],
|
|
142
95
|
standalone: false
|
|
143
96
|
}]
|
|
144
97
|
}] });
|
|
145
98
|
|
|
146
|
-
class PButtonPure extends
|
|
99
|
+
class PButtonPure extends BaseComponent {
|
|
147
100
|
active;
|
|
148
101
|
alignLabel;
|
|
149
102
|
aria;
|
|
@@ -156,21 +109,18 @@ class PButtonPure extends BaseComponentWithTheme {
|
|
|
156
109
|
name;
|
|
157
110
|
size;
|
|
158
111
|
stretch;
|
|
159
|
-
theme;
|
|
160
112
|
type;
|
|
161
113
|
underline;
|
|
162
114
|
value;
|
|
163
|
-
/** @deprecated */
|
|
164
|
-
weight;
|
|
165
115
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButtonPure, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
166
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButtonPure, isStandalone: false, selector: "p-button-pure,[p-button-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", disabled: "disabled", form: "form", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", name: "name", size: "size", stretch: "stretch",
|
|
116
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButtonPure, isStandalone: false, selector: "p-button-pure,[p-button-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", disabled: "disabled", form: "form", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", name: "name", size: "size", stretch: "stretch", type: "type", underline: "underline", value: "value" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
167
117
|
}
|
|
168
118
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButtonPure, decorators: [{
|
|
169
119
|
type: Component,
|
|
170
120
|
args: [{
|
|
171
121
|
selector: 'p-button-pure,[p-button-pure]',
|
|
172
122
|
template: '<ng-content />',
|
|
173
|
-
inputs: ['active', 'alignLabel', 'aria', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'size', 'stretch', '
|
|
123
|
+
inputs: ['active', 'alignLabel', 'aria', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'size', 'stretch', 'type', 'underline', 'value'],
|
|
174
124
|
standalone: false
|
|
175
125
|
}]
|
|
176
126
|
}] });
|
|
@@ -179,7 +129,6 @@ class PButtonTile extends BaseComponent {
|
|
|
179
129
|
align;
|
|
180
130
|
aria;
|
|
181
131
|
aspectRatio;
|
|
182
|
-
background;
|
|
183
132
|
compact;
|
|
184
133
|
description;
|
|
185
134
|
disabled;
|
|
@@ -192,48 +141,45 @@ class PButtonTile extends BaseComponent {
|
|
|
192
141
|
type;
|
|
193
142
|
weight;
|
|
194
143
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButtonTile, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
195
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButtonTile, isStandalone: false, selector: "p-button-tile,[p-button-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio",
|
|
144
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PButtonTile, isStandalone: false, selector: "p-button-tile,[p-button-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", compact: "compact", description: "description", disabled: "disabled", gradient: "gradient", icon: "icon", iconSource: "iconSource", label: "label", loading: "loading", size: "size", type: "type", weight: "weight" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
196
145
|
}
|
|
197
146
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PButtonTile, decorators: [{
|
|
198
147
|
type: Component,
|
|
199
148
|
args: [{
|
|
200
149
|
selector: 'p-button-tile,[p-button-tile]',
|
|
201
150
|
template: '<ng-content />',
|
|
202
|
-
inputs: ['align', 'aria', 'aspectRatio', '
|
|
151
|
+
inputs: ['align', 'aria', 'aspectRatio', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'],
|
|
203
152
|
standalone: false
|
|
204
153
|
}]
|
|
205
154
|
}] });
|
|
206
155
|
|
|
207
|
-
class PCanvas extends
|
|
156
|
+
class PCanvas extends BaseComponent {
|
|
208
157
|
sidebarEndOpen;
|
|
209
158
|
sidebarStartOpen;
|
|
210
|
-
theme;
|
|
211
159
|
sidebarEndDismiss = new EventEmitter();
|
|
212
160
|
sidebarStartUpdate = new EventEmitter();
|
|
213
161
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCanvas, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
214
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCanvas, isStandalone: false, selector: "p-canvas,[p-canvas]", inputs: { sidebarEndOpen: "sidebarEndOpen", sidebarStartOpen: "sidebarStartOpen"
|
|
162
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCanvas, isStandalone: false, selector: "p-canvas,[p-canvas]", inputs: { sidebarEndOpen: "sidebarEndOpen", sidebarStartOpen: "sidebarStartOpen" }, outputs: { sidebarEndDismiss: "sidebarEndDismiss", sidebarStartUpdate: "sidebarStartUpdate" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
215
163
|
}
|
|
216
164
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCanvas, decorators: [{
|
|
217
165
|
type: Component,
|
|
218
166
|
args: [{
|
|
219
167
|
selector: 'p-canvas,[p-canvas]',
|
|
220
168
|
template: '<ng-content />',
|
|
221
|
-
inputs: ['sidebarEndOpen', 'sidebarStartOpen'
|
|
169
|
+
inputs: ['sidebarEndOpen', 'sidebarStartOpen'],
|
|
222
170
|
outputs: ['sidebarEndDismiss', 'sidebarStartUpdate'],
|
|
223
171
|
standalone: false
|
|
224
172
|
}]
|
|
225
173
|
}] });
|
|
226
174
|
|
|
227
|
-
class PCarousel extends
|
|
175
|
+
class PCarousel extends BaseComponent {
|
|
228
176
|
activeSlideIndex;
|
|
229
177
|
alignControls;
|
|
230
178
|
alignHeader;
|
|
231
179
|
aria;
|
|
232
180
|
description;
|
|
233
|
-
/** @deprecated */
|
|
234
|
-
disablePagination;
|
|
235
181
|
focusOnCenterSlide;
|
|
236
|
-
|
|
182
|
+
gradient;
|
|
237
183
|
heading;
|
|
238
184
|
headingSize;
|
|
239
185
|
intl;
|
|
@@ -241,29 +187,24 @@ class PCarousel extends BaseComponentWithTheme {
|
|
|
241
187
|
rewind;
|
|
242
188
|
skipLinkTarget;
|
|
243
189
|
slidesPerPage;
|
|
244
|
-
theme;
|
|
245
190
|
trimSpace;
|
|
246
191
|
width;
|
|
247
|
-
/** @deprecated */
|
|
248
|
-
wrapContent;
|
|
249
|
-
/** @deprecated */
|
|
250
|
-
carouselChange = new EventEmitter();
|
|
251
192
|
update = new EventEmitter();
|
|
252
193
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCarousel, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
253
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCarousel, isStandalone: false, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignControls: "alignControls", alignHeader: "alignHeader", aria: "aria", description: "description",
|
|
194
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCarousel, isStandalone: false, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignControls: "alignControls", alignHeader: "alignHeader", aria: "aria", description: "description", focusOnCenterSlide: "focusOnCenterSlide", gradient: "gradient", heading: "heading", headingSize: "headingSize", intl: "intl", pagination: "pagination", rewind: "rewind", skipLinkTarget: "skipLinkTarget", slidesPerPage: "slidesPerPage", trimSpace: "trimSpace", width: "width" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
254
195
|
}
|
|
255
196
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCarousel, decorators: [{
|
|
256
197
|
type: Component,
|
|
257
198
|
args: [{
|
|
258
199
|
selector: 'p-carousel,[p-carousel]',
|
|
259
200
|
template: '<ng-content />',
|
|
260
|
-
inputs: ['activeSlideIndex', 'alignControls', 'alignHeader', 'aria', 'description', '
|
|
261
|
-
outputs: ['
|
|
201
|
+
inputs: ['activeSlideIndex', 'alignControls', 'alignHeader', 'aria', 'description', 'focusOnCenterSlide', 'gradient', 'heading', 'headingSize', 'intl', 'pagination', 'rewind', 'skipLinkTarget', 'slidesPerPage', 'trimSpace', 'width'],
|
|
202
|
+
outputs: ['update'],
|
|
262
203
|
standalone: false
|
|
263
204
|
}]
|
|
264
205
|
}] });
|
|
265
206
|
|
|
266
|
-
class PCheckbox extends
|
|
207
|
+
class PCheckbox extends BaseComponent {
|
|
267
208
|
_renderer;
|
|
268
209
|
_elementRef;
|
|
269
210
|
_cdr;
|
|
@@ -279,12 +220,9 @@ class PCheckbox extends BaseComponentWithTheme {
|
|
|
279
220
|
name;
|
|
280
221
|
required;
|
|
281
222
|
state;
|
|
282
|
-
theme;
|
|
283
223
|
value;
|
|
284
224
|
blur = new EventEmitter();
|
|
285
225
|
change = new EventEmitter();
|
|
286
|
-
/** @deprecated */
|
|
287
|
-
update = new EventEmitter();
|
|
288
226
|
constructor(_renderer, _elementRef, _cdr) {
|
|
289
227
|
super(_cdr, _elementRef);
|
|
290
228
|
this._renderer = _renderer;
|
|
@@ -306,7 +244,7 @@ class PCheckbox extends BaseComponentWithTheme {
|
|
|
306
244
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
307
245
|
}
|
|
308
246
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCheckbox, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
309
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCheckbox, isStandalone: false, selector: "p-checkbox,[p-checkbox]", inputs: { checked: "checked", compact: "compact", disabled: "disabled", form: "form", hideLabel: "hideLabel", indeterminate: "indeterminate", label: "label", loading: "loading", message: "message", name: "name", required: "required", state: "state",
|
|
247
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCheckbox, isStandalone: false, selector: "p-checkbox,[p-checkbox]", inputs: { checked: "checked", compact: "compact", disabled: "disabled", form: "form", hideLabel: "hideLabel", indeterminate: "indeterminate", label: "label", loading: "loading", message: "message", name: "name", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change" }, host: { listeners: { "change": "_onChange($event.target.checked)", "blur": "_onTouched()" } }, providers: [
|
|
310
248
|
{
|
|
311
249
|
provide: NG_VALUE_ACCESSOR,
|
|
312
250
|
useExisting: forwardRef(() => PCheckbox),
|
|
@@ -319,8 +257,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
319
257
|
args: [{
|
|
320
258
|
selector: 'p-checkbox,[p-checkbox]',
|
|
321
259
|
template: '<ng-content />',
|
|
322
|
-
inputs: ['checked', 'compact', 'disabled', 'form', 'hideLabel', 'indeterminate', 'label', 'loading', 'message', 'name', 'required', 'state', '
|
|
323
|
-
outputs: ['blur', 'change'
|
|
260
|
+
inputs: ['checked', 'compact', 'disabled', 'form', 'hideLabel', 'indeterminate', 'label', 'loading', 'message', 'name', 'required', 'state', 'value'],
|
|
261
|
+
outputs: ['blur', 'change'],
|
|
324
262
|
standalone: false,
|
|
325
263
|
providers: [
|
|
326
264
|
{
|
|
@@ -336,47 +274,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
336
274
|
}]
|
|
337
275
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
338
276
|
|
|
339
|
-
/** @deprecated since v3.29.0, will be removed with next major release. Please use `p-checkbox` instead. */
|
|
340
|
-
class PCheckboxWrapper extends BaseComponentWithTheme {
|
|
341
|
-
hideLabel;
|
|
342
|
-
label;
|
|
343
|
-
loading;
|
|
344
|
-
message;
|
|
345
|
-
state;
|
|
346
|
-
theme;
|
|
347
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCheckboxWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
348
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PCheckboxWrapper, isStandalone: false, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", loading: "loading", message: "message", state: "state", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
349
|
-
}
|
|
350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
351
|
-
type: Component,
|
|
352
|
-
args: [{
|
|
353
|
-
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
354
|
-
template: '<ng-content />',
|
|
355
|
-
inputs: ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'],
|
|
356
|
-
standalone: false
|
|
357
|
-
}]
|
|
358
|
-
}] });
|
|
359
|
-
|
|
360
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
361
|
-
class PContentWrapper extends BaseComponentWithTheme {
|
|
362
|
-
/** @deprecated */
|
|
363
|
-
backgroundColor;
|
|
364
|
-
/** @deprecated */
|
|
365
|
-
theme;
|
|
366
|
-
width;
|
|
367
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PContentWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
368
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PContentWrapper, isStandalone: false, selector: "p-content-wrapper,[p-content-wrapper]", inputs: { backgroundColor: "backgroundColor", theme: "theme", width: "width" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
369
|
-
}
|
|
370
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
371
|
-
type: Component,
|
|
372
|
-
args: [{
|
|
373
|
-
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
374
|
-
template: '<ng-content />',
|
|
375
|
-
inputs: ['backgroundColor', 'theme', 'width'],
|
|
376
|
-
standalone: false
|
|
377
|
-
}]
|
|
378
|
-
}] });
|
|
379
|
-
|
|
380
277
|
class PCrest extends BaseComponent {
|
|
381
278
|
aria;
|
|
382
279
|
href;
|
|
@@ -394,61 +291,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
394
291
|
}]
|
|
395
292
|
}] });
|
|
396
293
|
|
|
397
|
-
class PDisplay extends
|
|
294
|
+
class PDisplay extends BaseComponent {
|
|
398
295
|
align;
|
|
399
296
|
color;
|
|
400
297
|
ellipsis;
|
|
401
298
|
size;
|
|
402
299
|
tag;
|
|
403
|
-
theme;
|
|
404
300
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PDisplay, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
405
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PDisplay, isStandalone: false, selector: "p-display,[p-display]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag"
|
|
301
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PDisplay, isStandalone: false, selector: "p-display,[p-display]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
406
302
|
}
|
|
407
303
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PDisplay, decorators: [{
|
|
408
304
|
type: Component,
|
|
409
305
|
args: [{
|
|
410
306
|
selector: 'p-display,[p-display]',
|
|
411
307
|
template: '<ng-content />',
|
|
412
|
-
inputs: ['align', 'color', 'ellipsis', 'size', 'tag'
|
|
308
|
+
inputs: ['align', 'color', 'ellipsis', 'size', 'tag'],
|
|
413
309
|
standalone: false
|
|
414
310
|
}]
|
|
415
311
|
}] });
|
|
416
312
|
|
|
417
|
-
class PDivider extends
|
|
313
|
+
class PDivider extends BaseComponent {
|
|
418
314
|
color;
|
|
419
315
|
direction;
|
|
420
|
-
/** @deprecated */
|
|
421
|
-
orientation;
|
|
422
|
-
theme;
|
|
423
316
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PDivider, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
424
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PDivider, isStandalone: false, selector: "p-divider,[p-divider]", inputs: { color: "color", direction: "direction"
|
|
317
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PDivider, isStandalone: false, selector: "p-divider,[p-divider]", inputs: { color: "color", direction: "direction" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
425
318
|
}
|
|
426
319
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PDivider, decorators: [{
|
|
427
320
|
type: Component,
|
|
428
321
|
args: [{
|
|
429
322
|
selector: 'p-divider,[p-divider]',
|
|
430
323
|
template: '<ng-content />',
|
|
431
|
-
inputs: ['color', 'direction'
|
|
324
|
+
inputs: ['color', 'direction'],
|
|
432
325
|
standalone: false
|
|
433
326
|
}]
|
|
434
327
|
}] });
|
|
435
328
|
|
|
436
|
-
class PDrilldown extends
|
|
329
|
+
class PDrilldown extends BaseComponent {
|
|
437
330
|
activeIdentifier;
|
|
438
331
|
aria;
|
|
439
332
|
open;
|
|
440
|
-
theme;
|
|
441
333
|
dismiss = new EventEmitter();
|
|
442
334
|
update = new EventEmitter();
|
|
443
335
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PDrilldown, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
444
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PDrilldown, isStandalone: false, selector: "p-drilldown,[p-drilldown]", inputs: { activeIdentifier: "activeIdentifier", aria: "aria", open: "open"
|
|
336
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PDrilldown, isStandalone: false, selector: "p-drilldown,[p-drilldown]", inputs: { activeIdentifier: "activeIdentifier", aria: "aria", open: "open" }, outputs: { dismiss: "dismiss", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
445
337
|
}
|
|
446
338
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PDrilldown, decorators: [{
|
|
447
339
|
type: Component,
|
|
448
340
|
args: [{
|
|
449
341
|
selector: 'p-drilldown,[p-drilldown]',
|
|
450
342
|
template: '<ng-content />',
|
|
451
|
-
inputs: ['activeIdentifier', 'aria', 'open'
|
|
343
|
+
inputs: ['activeIdentifier', 'aria', 'open'],
|
|
452
344
|
outputs: ['dismiss', 'update'],
|
|
453
345
|
standalone: false
|
|
454
346
|
}]
|
|
@@ -493,44 +385,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
493
385
|
}]
|
|
494
386
|
}] });
|
|
495
387
|
|
|
496
|
-
class PFieldset extends
|
|
388
|
+
class PFieldset extends BaseComponent {
|
|
497
389
|
aria;
|
|
498
390
|
label;
|
|
499
391
|
labelSize;
|
|
500
392
|
message;
|
|
501
393
|
required;
|
|
502
394
|
state;
|
|
503
|
-
theme;
|
|
504
395
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFieldset, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
505
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFieldset, isStandalone: false, selector: "p-fieldset,[p-fieldset]", inputs: { aria: "aria", label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state"
|
|
396
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFieldset, isStandalone: false, selector: "p-fieldset,[p-fieldset]", inputs: { aria: "aria", label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
506
397
|
}
|
|
507
398
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFieldset, decorators: [{
|
|
508
399
|
type: Component,
|
|
509
400
|
args: [{
|
|
510
401
|
selector: 'p-fieldset,[p-fieldset]',
|
|
511
402
|
template: '<ng-content />',
|
|
512
|
-
inputs: ['aria', 'label', 'labelSize', 'message', 'required', 'state'
|
|
513
|
-
standalone: false
|
|
514
|
-
}]
|
|
515
|
-
}] });
|
|
516
|
-
|
|
517
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Please use `p-fieldset` instead. */
|
|
518
|
-
class PFieldsetWrapper extends BaseComponentWithTheme {
|
|
519
|
-
label;
|
|
520
|
-
labelSize;
|
|
521
|
-
message;
|
|
522
|
-
required;
|
|
523
|
-
state;
|
|
524
|
-
theme;
|
|
525
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFieldsetWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
526
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFieldsetWrapper, isStandalone: false, selector: "p-fieldset-wrapper,[p-fieldset-wrapper]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
527
|
-
}
|
|
528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
529
|
-
type: Component,
|
|
530
|
-
args: [{
|
|
531
|
-
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
532
|
-
template: '<ng-content />',
|
|
533
|
-
inputs: ['label', 'labelSize', 'message', 'required', 'state', 'theme'],
|
|
403
|
+
inputs: ['aria', 'label', 'labelSize', 'message', 'required', 'state'],
|
|
534
404
|
standalone: false
|
|
535
405
|
}]
|
|
536
406
|
}] });
|
|
@@ -552,173 +422,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
552
422
|
}]
|
|
553
423
|
}] });
|
|
554
424
|
|
|
555
|
-
|
|
556
|
-
class PFlex extends BaseComponent {
|
|
557
|
-
alignContent;
|
|
558
|
-
alignItems;
|
|
559
|
-
direction;
|
|
560
|
-
inline;
|
|
561
|
-
justifyContent;
|
|
562
|
-
wrap;
|
|
563
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFlex, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
564
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFlex, isStandalone: false, selector: "p-flex,[p-flex]", inputs: { alignContent: "alignContent", alignItems: "alignItems", direction: "direction", inline: "inline", justifyContent: "justifyContent", wrap: "wrap" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
565
|
-
}
|
|
566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFlex, decorators: [{
|
|
567
|
-
type: Component,
|
|
568
|
-
args: [{
|
|
569
|
-
selector: 'p-flex,[p-flex]',
|
|
570
|
-
template: '<ng-content />',
|
|
571
|
-
inputs: ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'],
|
|
572
|
-
standalone: false
|
|
573
|
-
}]
|
|
574
|
-
}] });
|
|
575
|
-
|
|
576
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
577
|
-
class PFlexItem extends BaseComponent {
|
|
578
|
-
alignSelf;
|
|
579
|
-
flex;
|
|
580
|
-
grow;
|
|
581
|
-
offset;
|
|
582
|
-
shrink;
|
|
583
|
-
width;
|
|
584
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFlexItem, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
585
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFlexItem, isStandalone: false, selector: "p-flex-item,[p-flex-item]", inputs: { alignSelf: "alignSelf", flex: "flex", grow: "grow", offset: "offset", shrink: "shrink", width: "width" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
586
|
-
}
|
|
587
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFlexItem, decorators: [{
|
|
588
|
-
type: Component,
|
|
589
|
-
args: [{
|
|
590
|
-
selector: 'p-flex-item,[p-flex-item]',
|
|
591
|
-
template: '<ng-content />',
|
|
592
|
-
inputs: ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'],
|
|
593
|
-
standalone: false
|
|
594
|
-
}]
|
|
595
|
-
}] });
|
|
596
|
-
|
|
597
|
-
class PFlyout extends BaseComponentWithTheme {
|
|
425
|
+
class PFlyout extends BaseComponent {
|
|
598
426
|
aria;
|
|
599
427
|
backdrop;
|
|
428
|
+
background;
|
|
600
429
|
disableBackdropClick;
|
|
601
430
|
footerBehavior;
|
|
602
431
|
open;
|
|
603
432
|
position;
|
|
604
|
-
theme;
|
|
605
433
|
dismiss = new EventEmitter();
|
|
606
434
|
motionHiddenEnd = new EventEmitter();
|
|
607
435
|
motionVisibleEnd = new EventEmitter();
|
|
608
436
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFlyout, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
609
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFlyout, isStandalone: false, selector: "p-flyout,[p-flyout]", inputs: { aria: "aria", backdrop: "backdrop", disableBackdropClick: "disableBackdropClick", footerBehavior: "footerBehavior", open: "open", position: "position"
|
|
437
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PFlyout, isStandalone: false, selector: "p-flyout,[p-flyout]", inputs: { aria: "aria", backdrop: "backdrop", background: "background", disableBackdropClick: "disableBackdropClick", footerBehavior: "footerBehavior", open: "open", position: "position" }, outputs: { dismiss: "dismiss", motionHiddenEnd: "motionHiddenEnd", motionVisibleEnd: "motionVisibleEnd" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
610
438
|
}
|
|
611
439
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PFlyout, decorators: [{
|
|
612
440
|
type: Component,
|
|
613
441
|
args: [{
|
|
614
442
|
selector: 'p-flyout,[p-flyout]',
|
|
615
443
|
template: '<ng-content />',
|
|
616
|
-
inputs: ['aria', 'backdrop', 'disableBackdropClick', 'footerBehavior', 'open', 'position'
|
|
444
|
+
inputs: ['aria', 'backdrop', 'background', 'disableBackdropClick', 'footerBehavior', 'open', 'position'],
|
|
617
445
|
outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],
|
|
618
446
|
standalone: false
|
|
619
447
|
}]
|
|
620
448
|
}] });
|
|
621
449
|
|
|
622
|
-
|
|
623
|
-
class PGrid extends BaseComponent {
|
|
624
|
-
direction;
|
|
625
|
-
/** @deprecated */
|
|
626
|
-
gutter;
|
|
627
|
-
wrap;
|
|
628
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PGrid, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
629
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PGrid, isStandalone: false, selector: "p-grid,[p-grid]", inputs: { direction: "direction", gutter: "gutter", wrap: "wrap" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
630
|
-
}
|
|
631
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PGrid, decorators: [{
|
|
632
|
-
type: Component,
|
|
633
|
-
args: [{
|
|
634
|
-
selector: 'p-grid,[p-grid]',
|
|
635
|
-
template: '<ng-content />',
|
|
636
|
-
inputs: ['direction', 'gutter', 'wrap'],
|
|
637
|
-
standalone: false
|
|
638
|
-
}]
|
|
639
|
-
}] });
|
|
640
|
-
|
|
641
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
642
|
-
class PGridItem extends BaseComponent {
|
|
643
|
-
offset;
|
|
644
|
-
size;
|
|
645
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PGridItem, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
646
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PGridItem, isStandalone: false, selector: "p-grid-item,[p-grid-item]", inputs: { offset: "offset", size: "size" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
647
|
-
}
|
|
648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PGridItem, decorators: [{
|
|
649
|
-
type: Component,
|
|
650
|
-
args: [{
|
|
651
|
-
selector: 'p-grid-item,[p-grid-item]',
|
|
652
|
-
template: '<ng-content />',
|
|
653
|
-
inputs: ['offset', 'size'],
|
|
654
|
-
standalone: false
|
|
655
|
-
}]
|
|
656
|
-
}] });
|
|
657
|
-
|
|
658
|
-
class PHeading extends BaseComponentWithTheme {
|
|
450
|
+
class PHeading extends BaseComponent {
|
|
659
451
|
align;
|
|
660
452
|
color;
|
|
661
453
|
ellipsis;
|
|
662
454
|
size;
|
|
663
455
|
tag;
|
|
664
|
-
theme;
|
|
665
456
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PHeading, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
666
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PHeading, isStandalone: false, selector: "p-heading,[p-heading]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag"
|
|
457
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PHeading, isStandalone: false, selector: "p-heading,[p-heading]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
667
458
|
}
|
|
668
459
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PHeading, decorators: [{
|
|
669
460
|
type: Component,
|
|
670
461
|
args: [{
|
|
671
462
|
selector: 'p-heading,[p-heading]',
|
|
672
463
|
template: '<ng-content />',
|
|
673
|
-
inputs: ['align', 'color', 'ellipsis', 'size', 'tag'
|
|
674
|
-
standalone: false
|
|
675
|
-
}]
|
|
676
|
-
}] });
|
|
677
|
-
|
|
678
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
679
|
-
class PHeadline extends BaseComponentWithTheme {
|
|
680
|
-
align;
|
|
681
|
-
color;
|
|
682
|
-
ellipsis;
|
|
683
|
-
tag;
|
|
684
|
-
theme;
|
|
685
|
-
variant;
|
|
686
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PHeadline, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
687
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PHeadline, isStandalone: false, selector: "p-headline,[p-headline]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", tag: "tag", theme: "theme", variant: "variant" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
688
|
-
}
|
|
689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PHeadline, decorators: [{
|
|
690
|
-
type: Component,
|
|
691
|
-
args: [{
|
|
692
|
-
selector: 'p-headline,[p-headline]',
|
|
693
|
-
template: '<ng-content />',
|
|
694
|
-
inputs: ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'],
|
|
464
|
+
inputs: ['align', 'color', 'ellipsis', 'size', 'tag'],
|
|
695
465
|
standalone: false
|
|
696
466
|
}]
|
|
697
467
|
}] });
|
|
698
468
|
|
|
699
|
-
class PIcon extends
|
|
469
|
+
class PIcon extends BaseComponent {
|
|
700
470
|
aria;
|
|
701
471
|
color;
|
|
702
|
-
/** @deprecated */
|
|
703
|
-
lazy;
|
|
704
472
|
name;
|
|
705
473
|
size;
|
|
706
474
|
source;
|
|
707
|
-
theme;
|
|
708
475
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PIcon, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
709
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PIcon, isStandalone: false, selector: "p-icon,[p-icon]", inputs: { aria: "aria", color: "color",
|
|
476
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PIcon, isStandalone: false, selector: "p-icon,[p-icon]", inputs: { aria: "aria", color: "color", name: "name", size: "size", source: "source" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
710
477
|
}
|
|
711
478
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PIcon, decorators: [{
|
|
712
479
|
type: Component,
|
|
713
480
|
args: [{
|
|
714
481
|
selector: 'p-icon,[p-icon]',
|
|
715
482
|
template: '<ng-content />',
|
|
716
|
-
inputs: ['aria', 'color', '
|
|
483
|
+
inputs: ['aria', 'color', 'name', 'size', 'source'],
|
|
717
484
|
standalone: false
|
|
718
485
|
}]
|
|
719
486
|
}] });
|
|
720
487
|
|
|
721
|
-
class PInlineNotification extends
|
|
488
|
+
class PInlineNotification extends BaseComponent {
|
|
722
489
|
actionIcon;
|
|
723
490
|
actionLabel;
|
|
724
491
|
actionLoading;
|
|
@@ -726,27 +493,24 @@ class PInlineNotification extends BaseComponentWithTheme {
|
|
|
726
493
|
dismissButton;
|
|
727
494
|
heading;
|
|
728
495
|
headingTag;
|
|
729
|
-
/** @deprecated */
|
|
730
|
-
persistent;
|
|
731
496
|
state;
|
|
732
|
-
theme;
|
|
733
497
|
action = new EventEmitter();
|
|
734
498
|
dismiss = new EventEmitter();
|
|
735
499
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInlineNotification, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
736
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInlineNotification, isStandalone: false, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", dismissButton: "dismissButton", heading: "heading", headingTag: "headingTag",
|
|
500
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInlineNotification, isStandalone: false, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", dismissButton: "dismissButton", heading: "heading", headingTag: "headingTag", state: "state" }, outputs: { action: "action", dismiss: "dismiss" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
737
501
|
}
|
|
738
502
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
739
503
|
type: Component,
|
|
740
504
|
args: [{
|
|
741
505
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
742
506
|
template: '<ng-content />',
|
|
743
|
-
inputs: ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'headingTag', '
|
|
507
|
+
inputs: ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'headingTag', 'state'],
|
|
744
508
|
outputs: ['action', 'dismiss'],
|
|
745
509
|
standalone: false
|
|
746
510
|
}]
|
|
747
511
|
}] });
|
|
748
512
|
|
|
749
|
-
class PInputDate extends
|
|
513
|
+
class PInputDate extends BaseComponent {
|
|
750
514
|
_renderer;
|
|
751
515
|
_elementRef;
|
|
752
516
|
_cdr;
|
|
@@ -766,7 +530,6 @@ class PInputDate extends BaseComponentWithTheme {
|
|
|
766
530
|
required;
|
|
767
531
|
state;
|
|
768
532
|
step;
|
|
769
|
-
theme;
|
|
770
533
|
value;
|
|
771
534
|
blur = new EventEmitter();
|
|
772
535
|
change = new EventEmitter();
|
|
@@ -792,7 +555,7 @@ class PInputDate extends BaseComponentWithTheme {
|
|
|
792
555
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
793
556
|
}
|
|
794
557
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputDate, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
795
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputDate, isStandalone: false, selector: "p-input-date,[p-input-date]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", readOnly: "readOnly", required: "required", state: "state", step: "step",
|
|
558
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputDate, isStandalone: false, selector: "p-input-date,[p-input-date]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", readOnly: "readOnly", required: "required", state: "state", step: "step", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
796
559
|
{
|
|
797
560
|
provide: NG_VALUE_ACCESSOR,
|
|
798
561
|
useExisting: forwardRef(() => PInputDate),
|
|
@@ -805,7 +568,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
805
568
|
args: [{
|
|
806
569
|
selector: 'p-input-date,[p-input-date]',
|
|
807
570
|
template: '<ng-content />',
|
|
808
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'readOnly', 'required', 'state', 'step', '
|
|
571
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'readOnly', 'required', 'state', 'step', 'value'],
|
|
809
572
|
outputs: ['blur', 'change', 'input'],
|
|
810
573
|
standalone: false,
|
|
811
574
|
providers: [
|
|
@@ -822,7 +585,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
822
585
|
}]
|
|
823
586
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
824
587
|
|
|
825
|
-
class PInputEmail extends
|
|
588
|
+
class PInputEmail extends BaseComponent {
|
|
826
589
|
_renderer;
|
|
827
590
|
_elementRef;
|
|
828
591
|
_cdr;
|
|
@@ -845,7 +608,6 @@ class PInputEmail extends BaseComponentWithTheme {
|
|
|
845
608
|
readOnly;
|
|
846
609
|
required;
|
|
847
610
|
state;
|
|
848
|
-
theme;
|
|
849
611
|
value;
|
|
850
612
|
blur = new EventEmitter();
|
|
851
613
|
change = new EventEmitter();
|
|
@@ -871,7 +633,7 @@ class PInputEmail extends BaseComponentWithTheme {
|
|
|
871
633
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
872
634
|
}
|
|
873
635
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputEmail, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
874
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputEmail, isStandalone: false, selector: "p-input-email,[p-input-email]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state",
|
|
636
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputEmail, isStandalone: false, selector: "p-input-email,[p-input-email]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
875
637
|
{
|
|
876
638
|
provide: NG_VALUE_ACCESSOR,
|
|
877
639
|
useExisting: forwardRef(() => PInputEmail),
|
|
@@ -884,7 +646,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
884
646
|
args: [{
|
|
885
647
|
selector: 'p-input-email,[p-input-email]',
|
|
886
648
|
template: '<ng-content />',
|
|
887
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'state', '
|
|
649
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'state', 'value'],
|
|
888
650
|
outputs: ['blur', 'change', 'input'],
|
|
889
651
|
standalone: false,
|
|
890
652
|
providers: [
|
|
@@ -901,7 +663,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
901
663
|
}]
|
|
902
664
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
903
665
|
|
|
904
|
-
class
|
|
666
|
+
class PInputMonth extends BaseComponent {
|
|
667
|
+
_renderer;
|
|
668
|
+
_elementRef;
|
|
669
|
+
_cdr;
|
|
670
|
+
autoComplete;
|
|
671
|
+
compact;
|
|
672
|
+
description;
|
|
673
|
+
disabled;
|
|
674
|
+
form;
|
|
675
|
+
hideLabel;
|
|
676
|
+
label;
|
|
677
|
+
loading;
|
|
678
|
+
max;
|
|
679
|
+
message;
|
|
680
|
+
min;
|
|
681
|
+
name;
|
|
682
|
+
readOnly;
|
|
683
|
+
required;
|
|
684
|
+
state;
|
|
685
|
+
step;
|
|
686
|
+
value;
|
|
687
|
+
blur = new EventEmitter();
|
|
688
|
+
change = new EventEmitter();
|
|
689
|
+
input = new EventEmitter();
|
|
690
|
+
constructor(_renderer, _elementRef, _cdr) {
|
|
691
|
+
super(_cdr, _elementRef);
|
|
692
|
+
this._renderer = _renderer;
|
|
693
|
+
this._elementRef = _elementRef;
|
|
694
|
+
this._cdr = _cdr;
|
|
695
|
+
}
|
|
696
|
+
_onChange = () => { };
|
|
697
|
+
_onTouched = () => { };
|
|
698
|
+
writeValue(value) {
|
|
699
|
+
this._renderer.setProperty(this._elementRef.nativeElement, 'value', value);
|
|
700
|
+
}
|
|
701
|
+
registerOnChange(fn) {
|
|
702
|
+
this._onChange = fn;
|
|
703
|
+
}
|
|
704
|
+
registerOnTouched(fn) {
|
|
705
|
+
this._onTouched = fn;
|
|
706
|
+
}
|
|
707
|
+
setDisabledState(isDisabled) {
|
|
708
|
+
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
709
|
+
}
|
|
710
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputMonth, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
711
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputMonth, isStandalone: false, selector: "p-input-month,[p-input-month]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", readOnly: "readOnly", required: "required", state: "state", step: "step", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
712
|
+
{
|
|
713
|
+
provide: NG_VALUE_ACCESSOR,
|
|
714
|
+
useExisting: forwardRef(() => PInputMonth),
|
|
715
|
+
multi: true,
|
|
716
|
+
},
|
|
717
|
+
], usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
718
|
+
}
|
|
719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputMonth, decorators: [{
|
|
720
|
+
type: Component,
|
|
721
|
+
args: [{
|
|
722
|
+
selector: 'p-input-month,[p-input-month]',
|
|
723
|
+
template: '<ng-content />',
|
|
724
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'readOnly', 'required', 'state', 'step', 'value'],
|
|
725
|
+
outputs: ['blur', 'change', 'input'],
|
|
726
|
+
standalone: false,
|
|
727
|
+
providers: [
|
|
728
|
+
{
|
|
729
|
+
provide: NG_VALUE_ACCESSOR,
|
|
730
|
+
useExisting: forwardRef(() => PInputMonth),
|
|
731
|
+
multi: true,
|
|
732
|
+
},
|
|
733
|
+
],
|
|
734
|
+
host: {
|
|
735
|
+
'(input)': '_onChange($event.target.value)',
|
|
736
|
+
'(blur)': '_onTouched()'
|
|
737
|
+
}
|
|
738
|
+
}]
|
|
739
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
740
|
+
|
|
741
|
+
class PInputNumber extends BaseComponent {
|
|
905
742
|
_renderer;
|
|
906
743
|
_elementRef;
|
|
907
744
|
_cdr;
|
|
@@ -923,7 +760,6 @@ class PInputNumber extends BaseComponentWithTheme {
|
|
|
923
760
|
required;
|
|
924
761
|
state;
|
|
925
762
|
step;
|
|
926
|
-
theme;
|
|
927
763
|
value;
|
|
928
764
|
blur = new EventEmitter();
|
|
929
765
|
change = new EventEmitter();
|
|
@@ -949,7 +785,7 @@ class PInputNumber extends BaseComponentWithTheme {
|
|
|
949
785
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
950
786
|
}
|
|
951
787
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputNumber, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
952
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputNumber, isStandalone: false, selector: "p-input-number,[p-input-number]", inputs: { autoComplete: "autoComplete", compact: "compact", controls: "controls", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", step: "step",
|
|
788
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputNumber, isStandalone: false, selector: "p-input-number,[p-input-number]", inputs: { autoComplete: "autoComplete", compact: "compact", controls: "controls", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", step: "step", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
953
789
|
{
|
|
954
790
|
provide: NG_VALUE_ACCESSOR,
|
|
955
791
|
useExisting: forwardRef(() => PInputNumber),
|
|
@@ -962,7 +798,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
962
798
|
args: [{
|
|
963
799
|
selector: 'p-input-number,[p-input-number]',
|
|
964
800
|
template: '<ng-content />',
|
|
965
|
-
inputs: ['autoComplete', 'compact', 'controls', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'placeholder', 'readOnly', 'required', 'state', 'step', '
|
|
801
|
+
inputs: ['autoComplete', 'compact', 'controls', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'placeholder', 'readOnly', 'required', 'state', 'step', 'value'],
|
|
966
802
|
outputs: ['blur', 'change', 'input'],
|
|
967
803
|
standalone: false,
|
|
968
804
|
providers: [
|
|
@@ -979,7 +815,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
979
815
|
}]
|
|
980
816
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
981
817
|
|
|
982
|
-
class PInputPassword extends
|
|
818
|
+
class PInputPassword extends BaseComponent {
|
|
983
819
|
_renderer;
|
|
984
820
|
_elementRef;
|
|
985
821
|
_cdr;
|
|
@@ -999,7 +835,6 @@ class PInputPassword extends BaseComponentWithTheme {
|
|
|
999
835
|
readOnly;
|
|
1000
836
|
required;
|
|
1001
837
|
state;
|
|
1002
|
-
theme;
|
|
1003
838
|
toggle;
|
|
1004
839
|
value;
|
|
1005
840
|
blur = new EventEmitter();
|
|
@@ -1026,7 +861,7 @@ class PInputPassword extends BaseComponentWithTheme {
|
|
|
1026
861
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1027
862
|
}
|
|
1028
863
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputPassword, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1029
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputPassword, isStandalone: false, selector: "p-input-password,[p-input-password]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state",
|
|
864
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputPassword, isStandalone: false, selector: "p-input-password,[p-input-password]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", toggle: "toggle", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1030
865
|
{
|
|
1031
866
|
provide: NG_VALUE_ACCESSOR,
|
|
1032
867
|
useExisting: forwardRef(() => PInputPassword),
|
|
@@ -1039,7 +874,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1039
874
|
args: [{
|
|
1040
875
|
selector: 'p-input-password,[p-input-password]',
|
|
1041
876
|
template: '<ng-content />',
|
|
1042
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'state', '
|
|
877
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'state', 'toggle', 'value'],
|
|
1043
878
|
outputs: ['blur', 'change', 'input'],
|
|
1044
879
|
standalone: false,
|
|
1045
880
|
providers: [
|
|
@@ -1056,7 +891,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1056
891
|
}]
|
|
1057
892
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1058
893
|
|
|
1059
|
-
class PInputSearch extends
|
|
894
|
+
class PInputSearch extends BaseComponent {
|
|
1060
895
|
_renderer;
|
|
1061
896
|
_elementRef;
|
|
1062
897
|
_cdr;
|
|
@@ -1070,13 +905,14 @@ class PInputSearch extends BaseComponentWithTheme {
|
|
|
1070
905
|
indicator;
|
|
1071
906
|
label;
|
|
1072
907
|
loading;
|
|
908
|
+
maxLength;
|
|
1073
909
|
message;
|
|
910
|
+
minLength;
|
|
1074
911
|
name;
|
|
1075
912
|
placeholder;
|
|
1076
913
|
readOnly;
|
|
1077
914
|
required;
|
|
1078
915
|
state;
|
|
1079
|
-
theme;
|
|
1080
916
|
value;
|
|
1081
917
|
blur = new EventEmitter();
|
|
1082
918
|
change = new EventEmitter();
|
|
@@ -1102,7 +938,7 @@ class PInputSearch extends BaseComponentWithTheme {
|
|
|
1102
938
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1103
939
|
}
|
|
1104
940
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputSearch, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1105
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputSearch, isStandalone: false, selector: "p-input-search,[p-input-search]", inputs: { autoComplete: "autoComplete", clear: "clear", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", message: "message", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state",
|
|
941
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputSearch, isStandalone: false, selector: "p-input-search,[p-input-search]", inputs: { autoComplete: "autoComplete", clear: "clear", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1106
942
|
{
|
|
1107
943
|
provide: NG_VALUE_ACCESSOR,
|
|
1108
944
|
useExisting: forwardRef(() => PInputSearch),
|
|
@@ -1115,7 +951,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1115
951
|
args: [{
|
|
1116
952
|
selector: 'p-input-search,[p-input-search]',
|
|
1117
953
|
template: '<ng-content />',
|
|
1118
|
-
inputs: ['autoComplete', 'clear', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'message', 'name', 'placeholder', 'readOnly', 'required', 'state', '
|
|
954
|
+
inputs: ['autoComplete', 'clear', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'state', 'value'],
|
|
1119
955
|
outputs: ['blur', 'change', 'input'],
|
|
1120
956
|
standalone: false,
|
|
1121
957
|
providers: [
|
|
@@ -1132,7 +968,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1132
968
|
}]
|
|
1133
969
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1134
970
|
|
|
1135
|
-
class PInputTel extends
|
|
971
|
+
class PInputTel extends BaseComponent {
|
|
1136
972
|
_renderer;
|
|
1137
973
|
_elementRef;
|
|
1138
974
|
_cdr;
|
|
@@ -1154,7 +990,6 @@ class PInputTel extends BaseComponentWithTheme {
|
|
|
1154
990
|
readOnly;
|
|
1155
991
|
required;
|
|
1156
992
|
state;
|
|
1157
|
-
theme;
|
|
1158
993
|
value;
|
|
1159
994
|
blur = new EventEmitter();
|
|
1160
995
|
change = new EventEmitter();
|
|
@@ -1180,7 +1015,7 @@ class PInputTel extends BaseComponentWithTheme {
|
|
|
1180
1015
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1181
1016
|
}
|
|
1182
1017
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputTel, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1183
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputTel, isStandalone: false, selector: "p-input-tel,[p-input-tel]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state",
|
|
1018
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputTel, isStandalone: false, selector: "p-input-tel,[p-input-tel]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1184
1019
|
{
|
|
1185
1020
|
provide: NG_VALUE_ACCESSOR,
|
|
1186
1021
|
useExisting: forwardRef(() => PInputTel),
|
|
@@ -1193,7 +1028,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1193
1028
|
args: [{
|
|
1194
1029
|
selector: 'p-input-tel,[p-input-tel]',
|
|
1195
1030
|
template: '<ng-content />',
|
|
1196
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'state', '
|
|
1031
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'state', 'value'],
|
|
1197
1032
|
outputs: ['blur', 'change', 'input'],
|
|
1198
1033
|
standalone: false,
|
|
1199
1034
|
providers: [
|
|
@@ -1210,7 +1045,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1210
1045
|
}]
|
|
1211
1046
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1212
1047
|
|
|
1213
|
-
class PInputText extends
|
|
1048
|
+
class PInputText extends BaseComponent {
|
|
1214
1049
|
_renderer;
|
|
1215
1050
|
_elementRef;
|
|
1216
1051
|
_cdr;
|
|
@@ -1232,7 +1067,6 @@ class PInputText extends BaseComponentWithTheme {
|
|
|
1232
1067
|
required;
|
|
1233
1068
|
spellCheck;
|
|
1234
1069
|
state;
|
|
1235
|
-
theme;
|
|
1236
1070
|
value;
|
|
1237
1071
|
blur = new EventEmitter();
|
|
1238
1072
|
change = new EventEmitter();
|
|
@@ -1258,7 +1092,7 @@ class PInputText extends BaseComponentWithTheme {
|
|
|
1258
1092
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1259
1093
|
}
|
|
1260
1094
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputText, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1261
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputText, isStandalone: false, selector: "p-input-text,[p-input-text]", inputs: { autoComplete: "autoComplete", compact: "compact", counter: "counter", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", spellCheck: "spellCheck", state: "state",
|
|
1095
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputText, isStandalone: false, selector: "p-input-text,[p-input-text]", inputs: { autoComplete: "autoComplete", compact: "compact", counter: "counter", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", spellCheck: "spellCheck", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1262
1096
|
{
|
|
1263
1097
|
provide: NG_VALUE_ACCESSOR,
|
|
1264
1098
|
useExisting: forwardRef(() => PInputText),
|
|
@@ -1271,7 +1105,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1271
1105
|
args: [{
|
|
1272
1106
|
selector: 'p-input-text,[p-input-text]',
|
|
1273
1107
|
template: '<ng-content />',
|
|
1274
|
-
inputs: ['autoComplete', 'compact', 'counter', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'spellCheck', 'state', '
|
|
1108
|
+
inputs: ['autoComplete', 'compact', 'counter', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'spellCheck', 'state', 'value'],
|
|
1275
1109
|
outputs: ['blur', 'change', 'input'],
|
|
1276
1110
|
standalone: false,
|
|
1277
1111
|
providers: [
|
|
@@ -1288,7 +1122,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1288
1122
|
}]
|
|
1289
1123
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1290
1124
|
|
|
1291
|
-
class PInputTime extends
|
|
1125
|
+
class PInputTime extends BaseComponent {
|
|
1292
1126
|
_renderer;
|
|
1293
1127
|
_elementRef;
|
|
1294
1128
|
_cdr;
|
|
@@ -1308,7 +1142,6 @@ class PInputTime extends BaseComponentWithTheme {
|
|
|
1308
1142
|
required;
|
|
1309
1143
|
state;
|
|
1310
1144
|
step;
|
|
1311
|
-
theme;
|
|
1312
1145
|
value;
|
|
1313
1146
|
blur = new EventEmitter();
|
|
1314
1147
|
change = new EventEmitter();
|
|
@@ -1334,7 +1167,7 @@ class PInputTime extends BaseComponentWithTheme {
|
|
|
1334
1167
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1335
1168
|
}
|
|
1336
1169
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputTime, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1337
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputTime, isStandalone: false, selector: "p-input-time,[p-input-time]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", readOnly: "readOnly", required: "required", state: "state", step: "step",
|
|
1170
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputTime, isStandalone: false, selector: "p-input-time,[p-input-time]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", readOnly: "readOnly", required: "required", state: "state", step: "step", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1338
1171
|
{
|
|
1339
1172
|
provide: NG_VALUE_ACCESSOR,
|
|
1340
1173
|
useExisting: forwardRef(() => PInputTime),
|
|
@@ -1347,7 +1180,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1347
1180
|
args: [{
|
|
1348
1181
|
selector: 'p-input-time,[p-input-time]',
|
|
1349
1182
|
template: '<ng-content />',
|
|
1350
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'readOnly', 'required', 'state', 'step', '
|
|
1183
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'readOnly', 'required', 'state', 'step', 'value'],
|
|
1351
1184
|
outputs: ['blur', 'change', 'input'],
|
|
1352
1185
|
standalone: false,
|
|
1353
1186
|
providers: [
|
|
@@ -1364,7 +1197,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1364
1197
|
}]
|
|
1365
1198
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1366
1199
|
|
|
1367
|
-
class PInputUrl extends
|
|
1200
|
+
class PInputUrl extends BaseComponent {
|
|
1368
1201
|
_renderer;
|
|
1369
1202
|
_elementRef;
|
|
1370
1203
|
_cdr;
|
|
@@ -1386,7 +1219,6 @@ class PInputUrl extends BaseComponentWithTheme {
|
|
|
1386
1219
|
readOnly;
|
|
1387
1220
|
required;
|
|
1388
1221
|
state;
|
|
1389
|
-
theme;
|
|
1390
1222
|
value;
|
|
1391
1223
|
blur = new EventEmitter();
|
|
1392
1224
|
change = new EventEmitter();
|
|
@@ -1412,7 +1244,7 @@ class PInputUrl extends BaseComponentWithTheme {
|
|
|
1412
1244
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1413
1245
|
}
|
|
1414
1246
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputUrl, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1415
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputUrl, isStandalone: false, selector: "p-input-url,[p-input-url]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state",
|
|
1247
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputUrl, isStandalone: false, selector: "p-input-url,[p-input-url]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", indicator: "indicator", label: "label", loading: "loading", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1416
1248
|
{
|
|
1417
1249
|
provide: NG_VALUE_ACCESSOR,
|
|
1418
1250
|
useExisting: forwardRef(() => PInputUrl),
|
|
@@ -1425,7 +1257,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1425
1257
|
args: [{
|
|
1426
1258
|
selector: 'p-input-url,[p-input-url]',
|
|
1427
1259
|
template: '<ng-content />',
|
|
1428
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'state', '
|
|
1260
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'state', 'value'],
|
|
1429
1261
|
outputs: ['blur', 'change', 'input'],
|
|
1430
1262
|
standalone: false,
|
|
1431
1263
|
providers: [
|
|
@@ -1442,7 +1274,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1442
1274
|
}]
|
|
1443
1275
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1444
1276
|
|
|
1445
|
-
class
|
|
1277
|
+
class PInputWeek extends BaseComponent {
|
|
1278
|
+
_renderer;
|
|
1279
|
+
_elementRef;
|
|
1280
|
+
_cdr;
|
|
1281
|
+
autoComplete;
|
|
1282
|
+
compact;
|
|
1283
|
+
description;
|
|
1284
|
+
disabled;
|
|
1285
|
+
form;
|
|
1286
|
+
hideLabel;
|
|
1287
|
+
label;
|
|
1288
|
+
loading;
|
|
1289
|
+
max;
|
|
1290
|
+
message;
|
|
1291
|
+
min;
|
|
1292
|
+
name;
|
|
1293
|
+
readOnly;
|
|
1294
|
+
required;
|
|
1295
|
+
state;
|
|
1296
|
+
step;
|
|
1297
|
+
value;
|
|
1298
|
+
blur = new EventEmitter();
|
|
1299
|
+
change = new EventEmitter();
|
|
1300
|
+
input = new EventEmitter();
|
|
1301
|
+
constructor(_renderer, _elementRef, _cdr) {
|
|
1302
|
+
super(_cdr, _elementRef);
|
|
1303
|
+
this._renderer = _renderer;
|
|
1304
|
+
this._elementRef = _elementRef;
|
|
1305
|
+
this._cdr = _cdr;
|
|
1306
|
+
}
|
|
1307
|
+
_onChange = () => { };
|
|
1308
|
+
_onTouched = () => { };
|
|
1309
|
+
writeValue(value) {
|
|
1310
|
+
this._renderer.setProperty(this._elementRef.nativeElement, 'value', value);
|
|
1311
|
+
}
|
|
1312
|
+
registerOnChange(fn) {
|
|
1313
|
+
this._onChange = fn;
|
|
1314
|
+
}
|
|
1315
|
+
registerOnTouched(fn) {
|
|
1316
|
+
this._onTouched = fn;
|
|
1317
|
+
}
|
|
1318
|
+
setDisabledState(isDisabled) {
|
|
1319
|
+
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1320
|
+
}
|
|
1321
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputWeek, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1322
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PInputWeek, isStandalone: false, selector: "p-input-week,[p-input-week]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", max: "max", message: "message", min: "min", name: "name", readOnly: "readOnly", required: "required", state: "state", step: "step", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1323
|
+
{
|
|
1324
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1325
|
+
useExisting: forwardRef(() => PInputWeek),
|
|
1326
|
+
multi: true,
|
|
1327
|
+
},
|
|
1328
|
+
], usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1329
|
+
}
|
|
1330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PInputWeek, decorators: [{
|
|
1331
|
+
type: Component,
|
|
1332
|
+
args: [{
|
|
1333
|
+
selector: 'p-input-week,[p-input-week]',
|
|
1334
|
+
template: '<ng-content />',
|
|
1335
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'readOnly', 'required', 'state', 'step', 'value'],
|
|
1336
|
+
outputs: ['blur', 'change', 'input'],
|
|
1337
|
+
standalone: false,
|
|
1338
|
+
providers: [
|
|
1339
|
+
{
|
|
1340
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1341
|
+
useExisting: forwardRef(() => PInputWeek),
|
|
1342
|
+
multi: true,
|
|
1343
|
+
},
|
|
1344
|
+
],
|
|
1345
|
+
host: {
|
|
1346
|
+
'(input)': '_onChange($event.target.value)',
|
|
1347
|
+
'(blur)': '_onTouched()'
|
|
1348
|
+
}
|
|
1349
|
+
}]
|
|
1350
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1351
|
+
|
|
1352
|
+
class PLink extends BaseComponent {
|
|
1446
1353
|
aria;
|
|
1447
1354
|
compact;
|
|
1448
1355
|
download;
|
|
@@ -1452,22 +1359,21 @@ class PLink extends BaseComponentWithTheme {
|
|
|
1452
1359
|
iconSource;
|
|
1453
1360
|
rel;
|
|
1454
1361
|
target;
|
|
1455
|
-
theme;
|
|
1456
1362
|
variant;
|
|
1457
1363
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLink, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1458
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLink, isStandalone: false, selector: "p-link,[p-link]", inputs: { aria: "aria", compact: "compact", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target",
|
|
1364
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLink, isStandalone: false, selector: "p-link,[p-link]", inputs: { aria: "aria", compact: "compact", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", variant: "variant" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1459
1365
|
}
|
|
1460
1366
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLink, decorators: [{
|
|
1461
1367
|
type: Component,
|
|
1462
1368
|
args: [{
|
|
1463
1369
|
selector: 'p-link,[p-link]',
|
|
1464
1370
|
template: '<ng-content />',
|
|
1465
|
-
inputs: ['aria', 'compact', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', '
|
|
1371
|
+
inputs: ['aria', 'compact', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'variant'],
|
|
1466
1372
|
standalone: false
|
|
1467
1373
|
}]
|
|
1468
1374
|
}] });
|
|
1469
1375
|
|
|
1470
|
-
class PLinkPure extends
|
|
1376
|
+
class PLinkPure extends BaseComponent {
|
|
1471
1377
|
active;
|
|
1472
1378
|
alignLabel;
|
|
1473
1379
|
aria;
|
|
@@ -1480,42 +1386,16 @@ class PLinkPure extends BaseComponentWithTheme {
|
|
|
1480
1386
|
size;
|
|
1481
1387
|
stretch;
|
|
1482
1388
|
target;
|
|
1483
|
-
theme;
|
|
1484
1389
|
underline;
|
|
1485
|
-
/** @deprecated */
|
|
1486
|
-
weight;
|
|
1487
1390
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkPure, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1488
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkPure, isStandalone: false, selector: "p-link-pure,[p-link-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", size: "size", stretch: "stretch", target: "target",
|
|
1391
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkPure, isStandalone: false, selector: "p-link-pure,[p-link-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", size: "size", stretch: "stretch", target: "target", underline: "underline" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1489
1392
|
}
|
|
1490
1393
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkPure, decorators: [{
|
|
1491
1394
|
type: Component,
|
|
1492
1395
|
args: [{
|
|
1493
1396
|
selector: 'p-link-pure,[p-link-pure]',
|
|
1494
1397
|
template: '<ng-content />',
|
|
1495
|
-
inputs: ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', '
|
|
1496
|
-
standalone: false
|
|
1497
|
-
}]
|
|
1498
|
-
}] });
|
|
1499
|
-
|
|
1500
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */
|
|
1501
|
-
class PLinkSocial extends BaseComponentWithTheme {
|
|
1502
|
-
compact;
|
|
1503
|
-
hideLabel;
|
|
1504
|
-
href;
|
|
1505
|
-
icon;
|
|
1506
|
-
iconSource;
|
|
1507
|
-
rel;
|
|
1508
|
-
target;
|
|
1509
|
-
theme;
|
|
1510
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkSocial, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1511
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkSocial, isStandalone: false, selector: "p-link-social,[p-link-social]", inputs: { compact: "compact", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1512
|
-
}
|
|
1513
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
1514
|
-
type: Component,
|
|
1515
|
-
args: [{
|
|
1516
|
-
selector: 'p-link-social,[p-link-social]',
|
|
1517
|
-
template: '<ng-content />',
|
|
1518
|
-
inputs: ['compact', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'],
|
|
1398
|
+
inputs: ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'underline'],
|
|
1519
1399
|
standalone: false
|
|
1520
1400
|
}]
|
|
1521
1401
|
}] });
|
|
@@ -1524,7 +1404,6 @@ class PLinkTile extends BaseComponent {
|
|
|
1524
1404
|
align;
|
|
1525
1405
|
aria;
|
|
1526
1406
|
aspectRatio;
|
|
1527
|
-
background;
|
|
1528
1407
|
compact;
|
|
1529
1408
|
description;
|
|
1530
1409
|
download;
|
|
@@ -1536,40 +1415,19 @@ class PLinkTile extends BaseComponent {
|
|
|
1536
1415
|
target;
|
|
1537
1416
|
weight;
|
|
1538
1417
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkTile, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1539
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkTile, isStandalone: false, selector: "p-link-tile,[p-link-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio",
|
|
1418
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkTile, isStandalone: false, selector: "p-link-tile,[p-link-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", compact: "compact", description: "description", download: "download", gradient: "gradient", href: "href", label: "label", rel: "rel", size: "size", target: "target", weight: "weight" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1540
1419
|
}
|
|
1541
1420
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkTile, decorators: [{
|
|
1542
1421
|
type: Component,
|
|
1543
1422
|
args: [{
|
|
1544
1423
|
selector: 'p-link-tile,[p-link-tile]',
|
|
1545
1424
|
template: '<ng-content />',
|
|
1546
|
-
inputs: ['align', 'aria', 'aspectRatio', '
|
|
1425
|
+
inputs: ['align', 'aria', 'aspectRatio', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'],
|
|
1547
1426
|
standalone: false
|
|
1548
1427
|
}]
|
|
1549
1428
|
}] });
|
|
1550
1429
|
|
|
1551
|
-
class
|
|
1552
|
-
aspectRatio;
|
|
1553
|
-
description;
|
|
1554
|
-
heading;
|
|
1555
|
-
headingTag;
|
|
1556
|
-
linkDirection;
|
|
1557
|
-
model;
|
|
1558
|
-
weight;
|
|
1559
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkTileModelSignature, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1560
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkTileModelSignature, isStandalone: false, selector: "p-link-tile-model-signature,[p-link-tile-model-signature]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", headingTag: "headingTag", linkDirection: "linkDirection", model: "model", weight: "weight" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1561
|
-
}
|
|
1562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkTileModelSignature, decorators: [{
|
|
1563
|
-
type: Component,
|
|
1564
|
-
args: [{
|
|
1565
|
-
selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',
|
|
1566
|
-
template: '<ng-content />',
|
|
1567
|
-
inputs: ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'],
|
|
1568
|
-
standalone: false
|
|
1569
|
-
}]
|
|
1570
|
-
}] });
|
|
1571
|
-
|
|
1572
|
-
class PLinkTileProduct extends BaseComponentWithTheme {
|
|
1430
|
+
class PLinkTileProduct extends BaseComponent {
|
|
1573
1431
|
aspectRatio;
|
|
1574
1432
|
description;
|
|
1575
1433
|
heading;
|
|
@@ -1580,96 +1438,67 @@ class PLinkTileProduct extends BaseComponentWithTheme {
|
|
|
1580
1438
|
priceOriginal;
|
|
1581
1439
|
rel;
|
|
1582
1440
|
target;
|
|
1583
|
-
theme;
|
|
1584
1441
|
like = new EventEmitter();
|
|
1585
1442
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkTileProduct, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1586
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkTileProduct, isStandalone: false, selector: "p-link-tile-product,[p-link-tile-product]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", href: "href", likeButton: "likeButton", liked: "liked", price: "price", priceOriginal: "priceOriginal", rel: "rel", target: "target"
|
|
1443
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PLinkTileProduct, isStandalone: false, selector: "p-link-tile-product,[p-link-tile-product]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", href: "href", likeButton: "likeButton", liked: "liked", price: "price", priceOriginal: "priceOriginal", rel: "rel", target: "target" }, outputs: { like: "like" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1587
1444
|
}
|
|
1588
1445
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PLinkTileProduct, decorators: [{
|
|
1589
1446
|
type: Component,
|
|
1590
1447
|
args: [{
|
|
1591
1448
|
selector: 'p-link-tile-product,[p-link-tile-product]',
|
|
1592
1449
|
template: '<ng-content />',
|
|
1593
|
-
inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'priceOriginal', 'rel', 'target'
|
|
1450
|
+
inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'priceOriginal', 'rel', 'target'],
|
|
1594
1451
|
outputs: ['like'],
|
|
1595
1452
|
standalone: false
|
|
1596
1453
|
}]
|
|
1597
1454
|
}] });
|
|
1598
1455
|
|
|
1599
|
-
|
|
1600
|
-
class PMarque extends BaseComponent {
|
|
1601
|
-
aria;
|
|
1602
|
-
href;
|
|
1603
|
-
size;
|
|
1604
|
-
target;
|
|
1605
|
-
trademark;
|
|
1606
|
-
variant;
|
|
1607
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PMarque, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1608
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PMarque, isStandalone: false, selector: "p-marque,[p-marque]", inputs: { aria: "aria", href: "href", size: "size", target: "target", trademark: "trademark", variant: "variant" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1609
|
-
}
|
|
1610
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PMarque, decorators: [{
|
|
1611
|
-
type: Component,
|
|
1612
|
-
args: [{
|
|
1613
|
-
selector: 'p-marque,[p-marque]',
|
|
1614
|
-
template: '<ng-content />',
|
|
1615
|
-
inputs: ['aria', 'href', 'size', 'target', 'trademark', 'variant'],
|
|
1616
|
-
standalone: false
|
|
1617
|
-
}]
|
|
1618
|
-
}] });
|
|
1619
|
-
|
|
1620
|
-
class PModal extends BaseComponentWithTheme {
|
|
1456
|
+
class PModal extends BaseComponent {
|
|
1621
1457
|
aria;
|
|
1622
1458
|
backdrop;
|
|
1459
|
+
background;
|
|
1623
1460
|
disableBackdropClick;
|
|
1624
|
-
/** @deprecated */
|
|
1625
|
-
disableCloseButton;
|
|
1626
1461
|
dismissButton;
|
|
1627
1462
|
fullscreen;
|
|
1628
|
-
/** @deprecated */
|
|
1629
|
-
heading;
|
|
1630
1463
|
open;
|
|
1631
|
-
theme;
|
|
1632
|
-
/** @deprecated */
|
|
1633
|
-
close = new EventEmitter();
|
|
1634
1464
|
dismiss = new EventEmitter();
|
|
1635
1465
|
motionHiddenEnd = new EventEmitter();
|
|
1636
1466
|
motionVisibleEnd = new EventEmitter();
|
|
1637
1467
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1638
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PModal, isStandalone: false, selector: "p-modal,[p-modal]", inputs: { aria: "aria", backdrop: "backdrop",
|
|
1468
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PModal, isStandalone: false, selector: "p-modal,[p-modal]", inputs: { aria: "aria", backdrop: "backdrop", background: "background", disableBackdropClick: "disableBackdropClick", dismissButton: "dismissButton", fullscreen: "fullscreen", open: "open" }, outputs: { dismiss: "dismiss", motionHiddenEnd: "motionHiddenEnd", motionVisibleEnd: "motionVisibleEnd" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1639
1469
|
}
|
|
1640
1470
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PModal, decorators: [{
|
|
1641
1471
|
type: Component,
|
|
1642
1472
|
args: [{
|
|
1643
1473
|
selector: 'p-modal,[p-modal]',
|
|
1644
1474
|
template: '<ng-content />',
|
|
1645
|
-
inputs: ['aria', 'backdrop', '
|
|
1646
|
-
outputs: ['
|
|
1475
|
+
inputs: ['aria', 'backdrop', 'background', 'disableBackdropClick', 'dismissButton', 'fullscreen', 'open'],
|
|
1476
|
+
outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],
|
|
1647
1477
|
standalone: false
|
|
1648
1478
|
}]
|
|
1649
1479
|
}] });
|
|
1650
1480
|
|
|
1651
|
-
class PModelSignature extends
|
|
1481
|
+
class PModelSignature extends BaseComponent {
|
|
1652
1482
|
color;
|
|
1653
1483
|
fetchPriority;
|
|
1654
1484
|
lazy;
|
|
1655
1485
|
model;
|
|
1656
1486
|
safeZone;
|
|
1657
1487
|
size;
|
|
1658
|
-
theme;
|
|
1659
1488
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PModelSignature, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1660
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PModelSignature, isStandalone: false, selector: "p-model-signature,[p-model-signature]", inputs: { color: "color", fetchPriority: "fetchPriority", lazy: "lazy", model: "model", safeZone: "safeZone", size: "size"
|
|
1489
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PModelSignature, isStandalone: false, selector: "p-model-signature,[p-model-signature]", inputs: { color: "color", fetchPriority: "fetchPriority", lazy: "lazy", model: "model", safeZone: "safeZone", size: "size" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1661
1490
|
}
|
|
1662
1491
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PModelSignature, decorators: [{
|
|
1663
1492
|
type: Component,
|
|
1664
1493
|
args: [{
|
|
1665
1494
|
selector: 'p-model-signature,[p-model-signature]',
|
|
1666
1495
|
template: '<ng-content />',
|
|
1667
|
-
inputs: ['color', 'fetchPriority', 'lazy', 'model', 'safeZone', 'size'
|
|
1496
|
+
inputs: ['color', 'fetchPriority', 'lazy', 'model', 'safeZone', 'size'],
|
|
1668
1497
|
standalone: false
|
|
1669
1498
|
}]
|
|
1670
1499
|
}] });
|
|
1671
1500
|
|
|
1672
|
-
class PMultiSelect extends
|
|
1501
|
+
class PMultiSelect extends BaseComponent {
|
|
1673
1502
|
_renderer;
|
|
1674
1503
|
_elementRef;
|
|
1675
1504
|
_cdr;
|
|
@@ -1684,12 +1513,10 @@ class PMultiSelect extends BaseComponentWithTheme {
|
|
|
1684
1513
|
name;
|
|
1685
1514
|
required;
|
|
1686
1515
|
state;
|
|
1687
|
-
theme;
|
|
1688
1516
|
value;
|
|
1689
1517
|
blur = new EventEmitter();
|
|
1690
1518
|
change = new EventEmitter();
|
|
1691
|
-
|
|
1692
|
-
update = new EventEmitter();
|
|
1519
|
+
toggle = new EventEmitter();
|
|
1693
1520
|
constructor(_renderer, _elementRef, _cdr) {
|
|
1694
1521
|
super(_cdr, _elementRef);
|
|
1695
1522
|
this._renderer = _renderer;
|
|
@@ -1711,7 +1538,7 @@ class PMultiSelect extends BaseComponentWithTheme {
|
|
|
1711
1538
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1712
1539
|
}
|
|
1713
1540
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PMultiSelect, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1714
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PMultiSelect, isStandalone: false, selector: "p-multi-select,[p-multi-select]", inputs: { compact: "compact", description: "description", disabled: "disabled", dropdownDirection: "dropdownDirection", form: "form", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state",
|
|
1541
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PMultiSelect, isStandalone: false, selector: "p-multi-select,[p-multi-select]", inputs: { compact: "compact", description: "description", disabled: "disabled", dropdownDirection: "dropdownDirection", form: "form", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", toggle: "toggle" }, host: { listeners: { "change": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1715
1542
|
{
|
|
1716
1543
|
provide: NG_VALUE_ACCESSOR,
|
|
1717
1544
|
useExisting: forwardRef(() => PMultiSelect),
|
|
@@ -1724,8 +1551,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1724
1551
|
args: [{
|
|
1725
1552
|
selector: 'p-multi-select,[p-multi-select]',
|
|
1726
1553
|
template: '<ng-content />',
|
|
1727
|
-
inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', '
|
|
1728
|
-
outputs: ['blur', 'change', '
|
|
1554
|
+
inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'value'],
|
|
1555
|
+
outputs: ['blur', 'change', 'toggle'],
|
|
1729
1556
|
standalone: false,
|
|
1730
1557
|
providers: [
|
|
1731
1558
|
{
|
|
@@ -1773,41 +1600,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1773
1600
|
}]
|
|
1774
1601
|
}] });
|
|
1775
1602
|
|
|
1776
|
-
class PPagination extends
|
|
1603
|
+
class PPagination extends BaseComponent {
|
|
1777
1604
|
activePage;
|
|
1778
|
-
/** @deprecated */
|
|
1779
|
-
allyLabel;
|
|
1780
|
-
/** @deprecated */
|
|
1781
|
-
allyLabelNext;
|
|
1782
|
-
/** @deprecated */
|
|
1783
|
-
allyLabelPage;
|
|
1784
|
-
/** @deprecated */
|
|
1785
|
-
allyLabelPrev;
|
|
1786
1605
|
intl;
|
|
1787
1606
|
itemsPerPage;
|
|
1788
|
-
/** @deprecated */
|
|
1789
|
-
maxNumberOfPageLinks;
|
|
1790
1607
|
showLastPage;
|
|
1791
|
-
theme;
|
|
1792
1608
|
totalItemsCount;
|
|
1793
|
-
/** @deprecated */
|
|
1794
|
-
pageChange = new EventEmitter();
|
|
1795
1609
|
update = new EventEmitter();
|
|
1796
1610
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PPagination, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1797
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PPagination, isStandalone: false, selector: "p-pagination,[p-pagination]", inputs: { activePage: "activePage",
|
|
1611
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PPagination, isStandalone: false, selector: "p-pagination,[p-pagination]", inputs: { activePage: "activePage", intl: "intl", itemsPerPage: "itemsPerPage", showLastPage: "showLastPage", totalItemsCount: "totalItemsCount" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1798
1612
|
}
|
|
1799
1613
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PPagination, decorators: [{
|
|
1800
1614
|
type: Component,
|
|
1801
1615
|
args: [{
|
|
1802
1616
|
selector: 'p-pagination,[p-pagination]',
|
|
1803
1617
|
template: '<ng-content />',
|
|
1804
|
-
inputs: ['activePage', '
|
|
1805
|
-
outputs: ['
|
|
1618
|
+
inputs: ['activePage', 'intl', 'itemsPerPage', 'showLastPage', 'totalItemsCount'],
|
|
1619
|
+
outputs: ['update'],
|
|
1806
1620
|
standalone: false
|
|
1807
1621
|
}]
|
|
1808
1622
|
}] });
|
|
1809
1623
|
|
|
1810
|
-
class PPinCode extends
|
|
1624
|
+
class PPinCode extends BaseComponent {
|
|
1811
1625
|
_renderer;
|
|
1812
1626
|
_elementRef;
|
|
1813
1627
|
_cdr;
|
|
@@ -1823,13 +1637,10 @@ class PPinCode extends BaseComponentWithTheme {
|
|
|
1823
1637
|
name;
|
|
1824
1638
|
required;
|
|
1825
1639
|
state;
|
|
1826
|
-
theme;
|
|
1827
1640
|
type;
|
|
1828
1641
|
value;
|
|
1829
1642
|
blur = new EventEmitter();
|
|
1830
1643
|
change = new EventEmitter();
|
|
1831
|
-
/** @deprecated */
|
|
1832
|
-
update = new EventEmitter();
|
|
1833
1644
|
constructor(_renderer, _elementRef, _cdr) {
|
|
1834
1645
|
super(_cdr, _elementRef);
|
|
1835
1646
|
this._renderer = _renderer;
|
|
@@ -1851,7 +1662,7 @@ class PPinCode extends BaseComponentWithTheme {
|
|
|
1851
1662
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1852
1663
|
}
|
|
1853
1664
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PPinCode, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1854
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PPinCode, isStandalone: false, selector: "p-pin-code,[p-pin-code]", inputs: { compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", length: "length", loading: "loading", message: "message", name: "name", required: "required", state: "state",
|
|
1665
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PPinCode, isStandalone: false, selector: "p-pin-code,[p-pin-code]", inputs: { compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", length: "length", loading: "loading", message: "message", name: "name", required: "required", state: "state", type: "type", value: "value" }, outputs: { blur: "blur", change: "change" }, host: { listeners: { "change": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1855
1666
|
{
|
|
1856
1667
|
provide: NG_VALUE_ACCESSOR,
|
|
1857
1668
|
useExisting: forwardRef(() => PPinCode),
|
|
@@ -1864,8 +1675,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1864
1675
|
args: [{
|
|
1865
1676
|
selector: 'p-pin-code,[p-pin-code]',
|
|
1866
1677
|
template: '<ng-content />',
|
|
1867
|
-
inputs: ['compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'length', 'loading', 'message', 'name', 'required', 'state', '
|
|
1868
|
-
outputs: ['blur', 'change'
|
|
1678
|
+
inputs: ['compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'length', 'loading', 'message', 'name', 'required', 'state', 'type', 'value'],
|
|
1679
|
+
outputs: ['blur', 'change'],
|
|
1869
1680
|
standalone: false,
|
|
1870
1681
|
providers: [
|
|
1871
1682
|
{
|
|
@@ -1881,46 +1692,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1881
1692
|
}]
|
|
1882
1693
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
1883
1694
|
|
|
1884
|
-
class PPopover extends
|
|
1695
|
+
class PPopover extends BaseComponent {
|
|
1885
1696
|
aria;
|
|
1886
1697
|
description;
|
|
1887
1698
|
direction;
|
|
1888
|
-
theme;
|
|
1889
1699
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1890
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PPopover, isStandalone: false, selector: "p-popover,[p-popover]", inputs: { aria: "aria", description: "description", direction: "direction"
|
|
1700
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PPopover, isStandalone: false, selector: "p-popover,[p-popover]", inputs: { aria: "aria", description: "description", direction: "direction" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1891
1701
|
}
|
|
1892
1702
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PPopover, decorators: [{
|
|
1893
1703
|
type: Component,
|
|
1894
1704
|
args: [{
|
|
1895
1705
|
selector: 'p-popover,[p-popover]',
|
|
1896
1706
|
template: '<ng-content />',
|
|
1897
|
-
inputs: ['aria', 'description', 'direction'
|
|
1707
|
+
inputs: ['aria', 'description', 'direction'],
|
|
1898
1708
|
standalone: false
|
|
1899
1709
|
}]
|
|
1900
1710
|
}] });
|
|
1901
1711
|
|
|
1902
|
-
|
|
1903
|
-
class PRadioButtonWrapper extends BaseComponentWithTheme {
|
|
1904
|
-
hideLabel;
|
|
1905
|
-
label;
|
|
1906
|
-
loading;
|
|
1907
|
-
message;
|
|
1908
|
-
state;
|
|
1909
|
-
theme;
|
|
1910
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PRadioButtonWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1911
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PRadioButtonWrapper, isStandalone: false, selector: "p-radio-button-wrapper,[p-radio-button-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", loading: "loading", message: "message", state: "state", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1912
|
-
}
|
|
1913
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PRadioButtonWrapper, decorators: [{
|
|
1914
|
-
type: Component,
|
|
1915
|
-
args: [{
|
|
1916
|
-
selector: 'p-radio-button-wrapper,[p-radio-button-wrapper]',
|
|
1917
|
-
template: '<ng-content />',
|
|
1918
|
-
inputs: ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'],
|
|
1919
|
-
standalone: false
|
|
1920
|
-
}]
|
|
1921
|
-
}] });
|
|
1922
|
-
|
|
1923
|
-
class PRadioGroup extends BaseComponentWithTheme {
|
|
1712
|
+
class PRadioGroup extends BaseComponent {
|
|
1924
1713
|
_renderer;
|
|
1925
1714
|
_elementRef;
|
|
1926
1715
|
_cdr;
|
|
@@ -1936,7 +1725,6 @@ class PRadioGroup extends BaseComponentWithTheme {
|
|
|
1936
1725
|
name;
|
|
1937
1726
|
required;
|
|
1938
1727
|
state;
|
|
1939
|
-
theme;
|
|
1940
1728
|
value;
|
|
1941
1729
|
blur = new EventEmitter();
|
|
1942
1730
|
change = new EventEmitter();
|
|
@@ -1961,7 +1749,7 @@ class PRadioGroup extends BaseComponentWithTheme {
|
|
|
1961
1749
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
1962
1750
|
}
|
|
1963
1751
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PRadioGroup, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1964
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PRadioGroup, isStandalone: false, selector: "p-radio-group,[p-radio-group]", inputs: { compact: "compact", description: "description", direction: "direction", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", message: "message", name: "name", required: "required", state: "state",
|
|
1752
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PRadioGroup, isStandalone: false, selector: "p-radio-group,[p-radio-group]", inputs: { compact: "compact", description: "description", direction: "direction", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", loading: "loading", message: "message", name: "name", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change" }, host: { listeners: { "change": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
1965
1753
|
{
|
|
1966
1754
|
provide: NG_VALUE_ACCESSOR,
|
|
1967
1755
|
useExisting: forwardRef(() => PRadioGroup),
|
|
@@ -1974,7 +1762,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1974
1762
|
args: [{
|
|
1975
1763
|
selector: 'p-radio-group,[p-radio-group]',
|
|
1976
1764
|
template: '<ng-content />',
|
|
1977
|
-
inputs: ['compact', 'description', 'direction', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'message', 'name', 'required', 'state', '
|
|
1765
|
+
inputs: ['compact', 'description', 'direction', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'message', 'name', 'required', 'state', 'value'],
|
|
1978
1766
|
outputs: ['blur', 'change'],
|
|
1979
1767
|
standalone: false,
|
|
1980
1768
|
providers: [
|
|
@@ -2009,50 +1797,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2009
1797
|
}]
|
|
2010
1798
|
}] });
|
|
2011
1799
|
|
|
2012
|
-
class PScroller extends
|
|
1800
|
+
class PScroller extends BaseComponent {
|
|
2013
1801
|
alignScrollIndicator;
|
|
2014
1802
|
aria;
|
|
2015
|
-
/** @deprecated */
|
|
2016
|
-
gradientColor;
|
|
2017
|
-
/** @deprecated */
|
|
2018
|
-
gradientColorScheme;
|
|
2019
|
-
/** @deprecated */
|
|
2020
|
-
scrollIndicatorPosition;
|
|
2021
1803
|
scrollToPosition;
|
|
2022
1804
|
scrollbar;
|
|
2023
|
-
theme;
|
|
2024
1805
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PScroller, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2025
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PScroller, isStandalone: false, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", aria: "aria",
|
|
1806
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PScroller, isStandalone: false, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", aria: "aria", scrollToPosition: "scrollToPosition", scrollbar: "scrollbar" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2026
1807
|
}
|
|
2027
1808
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PScroller, decorators: [{
|
|
2028
1809
|
type: Component,
|
|
2029
1810
|
args: [{
|
|
2030
1811
|
selector: 'p-scroller,[p-scroller]',
|
|
2031
1812
|
template: '<ng-content />',
|
|
2032
|
-
inputs: ['alignScrollIndicator', 'aria', '
|
|
1813
|
+
inputs: ['alignScrollIndicator', 'aria', 'scrollToPosition', 'scrollbar'],
|
|
2033
1814
|
standalone: false
|
|
2034
1815
|
}]
|
|
2035
1816
|
}] });
|
|
2036
1817
|
|
|
2037
|
-
class PSegmentedControl extends
|
|
1818
|
+
class PSegmentedControl extends BaseComponent {
|
|
2038
1819
|
_renderer;
|
|
2039
1820
|
_elementRef;
|
|
2040
1821
|
_cdr;
|
|
2041
|
-
/** @deprecated */
|
|
2042
|
-
backgroundColor;
|
|
2043
1822
|
columns;
|
|
2044
1823
|
compact;
|
|
1824
|
+
description;
|
|
2045
1825
|
disabled;
|
|
2046
1826
|
form;
|
|
1827
|
+
hideLabel;
|
|
1828
|
+
label;
|
|
1829
|
+
message;
|
|
2047
1830
|
name;
|
|
2048
|
-
|
|
1831
|
+
required;
|
|
1832
|
+
state;
|
|
2049
1833
|
value;
|
|
2050
1834
|
blur = new EventEmitter();
|
|
2051
1835
|
change = new EventEmitter();
|
|
2052
|
-
/** @deprecated */
|
|
2053
|
-
segmentedControlChange = new EventEmitter();
|
|
2054
|
-
/** @deprecated */
|
|
2055
|
-
update = new EventEmitter();
|
|
2056
1836
|
constructor(_renderer, _elementRef, _cdr) {
|
|
2057
1837
|
super(_cdr, _elementRef);
|
|
2058
1838
|
this._renderer = _renderer;
|
|
@@ -2074,7 +1854,7 @@ class PSegmentedControl extends BaseComponentWithTheme {
|
|
|
2074
1854
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
2075
1855
|
}
|
|
2076
1856
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSegmentedControl, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2077
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSegmentedControl, isStandalone: false, selector: "p-segmented-control,[p-segmented-control]", inputs: {
|
|
1857
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSegmentedControl, isStandalone: false, selector: "p-segmented-control,[p-segmented-control]", inputs: { columns: "columns", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change" }, host: { listeners: { "change": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
2078
1858
|
{
|
|
2079
1859
|
provide: NG_VALUE_ACCESSOR,
|
|
2080
1860
|
useExisting: forwardRef(() => PSegmentedControl),
|
|
@@ -2087,8 +1867,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2087
1867
|
args: [{
|
|
2088
1868
|
selector: 'p-segmented-control,[p-segmented-control]',
|
|
2089
1869
|
template: '<ng-content />',
|
|
2090
|
-
inputs: ['
|
|
2091
|
-
outputs: ['blur', 'change'
|
|
1870
|
+
inputs: ['columns', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'value'],
|
|
1871
|
+
outputs: ['blur', 'change'],
|
|
2092
1872
|
standalone: false,
|
|
2093
1873
|
providers: [
|
|
2094
1874
|
{
|
|
@@ -2124,7 +1904,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2124
1904
|
}]
|
|
2125
1905
|
}] });
|
|
2126
1906
|
|
|
2127
|
-
class PSelect extends
|
|
1907
|
+
class PSelect extends BaseComponent {
|
|
2128
1908
|
_renderer;
|
|
2129
1909
|
_elementRef;
|
|
2130
1910
|
_cdr;
|
|
@@ -2140,12 +1920,10 @@ class PSelect extends BaseComponentWithTheme {
|
|
|
2140
1920
|
name;
|
|
2141
1921
|
required;
|
|
2142
1922
|
state;
|
|
2143
|
-
theme;
|
|
2144
1923
|
value;
|
|
2145
1924
|
blur = new EventEmitter();
|
|
2146
1925
|
change = new EventEmitter();
|
|
2147
|
-
|
|
2148
|
-
update = new EventEmitter();
|
|
1926
|
+
toggle = new EventEmitter();
|
|
2149
1927
|
constructor(_renderer, _elementRef, _cdr) {
|
|
2150
1928
|
super(_cdr, _elementRef);
|
|
2151
1929
|
this._renderer = _renderer;
|
|
@@ -2167,7 +1945,7 @@ class PSelect extends BaseComponentWithTheme {
|
|
|
2167
1945
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
2168
1946
|
}
|
|
2169
1947
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSelect, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2170
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSelect, isStandalone: false, selector: "p-select,[p-select]", inputs: { compact: "compact", description: "description", disabled: "disabled", dropdownDirection: "dropdownDirection", filter: "filter", form: "form", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state",
|
|
1948
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSelect, isStandalone: false, selector: "p-select,[p-select]", inputs: { compact: "compact", description: "description", disabled: "disabled", dropdownDirection: "dropdownDirection", filter: "filter", form: "form", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state", value: "value" }, outputs: { blur: "blur", change: "change", toggle: "toggle" }, host: { listeners: { "change": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
2171
1949
|
{
|
|
2172
1950
|
provide: NG_VALUE_ACCESSOR,
|
|
2173
1951
|
useExisting: forwardRef(() => PSelect),
|
|
@@ -2180,8 +1958,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2180
1958
|
args: [{
|
|
2181
1959
|
selector: 'p-select,[p-select]',
|
|
2182
1960
|
template: '<ng-content />',
|
|
2183
|
-
inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'filter', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', '
|
|
2184
|
-
outputs: ['blur', 'change', '
|
|
1961
|
+
inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'filter', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'value'],
|
|
1962
|
+
outputs: ['blur', 'change', 'toggle'],
|
|
2185
1963
|
standalone: false,
|
|
2186
1964
|
providers: [
|
|
2187
1965
|
{
|
|
@@ -2213,86 +1991,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2213
1991
|
}]
|
|
2214
1992
|
}] });
|
|
2215
1993
|
|
|
2216
|
-
|
|
2217
|
-
class PSelectWrapper extends BaseComponentWithTheme {
|
|
2218
|
-
description;
|
|
2219
|
-
dropdownDirection;
|
|
2220
|
-
filter;
|
|
2221
|
-
hideLabel;
|
|
2222
|
-
label;
|
|
2223
|
-
message;
|
|
2224
|
-
native;
|
|
2225
|
-
state;
|
|
2226
|
-
theme;
|
|
2227
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSelectWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2228
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSelectWrapper, isStandalone: false, selector: "p-select-wrapper,[p-select-wrapper]", inputs: { description: "description", dropdownDirection: "dropdownDirection", filter: "filter", hideLabel: "hideLabel", label: "label", message: "message", native: "native", state: "state", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2229
|
-
}
|
|
2230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSelectWrapper, decorators: [{
|
|
2231
|
-
type: Component,
|
|
2232
|
-
args: [{
|
|
2233
|
-
selector: 'p-select-wrapper,[p-select-wrapper]',
|
|
2234
|
-
template: '<ng-content />',
|
|
2235
|
-
inputs: ['description', 'dropdownDirection', 'filter', 'hideLabel', 'label', 'message', 'native', 'state', 'theme'],
|
|
2236
|
-
standalone: false
|
|
2237
|
-
}]
|
|
2238
|
-
}] });
|
|
2239
|
-
|
|
2240
|
-
class PSheet extends BaseComponentWithTheme {
|
|
1994
|
+
class PSheet extends BaseComponent {
|
|
2241
1995
|
aria;
|
|
1996
|
+
background;
|
|
2242
1997
|
disableBackdropClick;
|
|
2243
1998
|
dismissButton;
|
|
2244
1999
|
open;
|
|
2245
|
-
theme;
|
|
2246
2000
|
dismiss = new EventEmitter();
|
|
2247
2001
|
motionHiddenEnd = new EventEmitter();
|
|
2248
2002
|
motionVisibleEnd = new EventEmitter();
|
|
2249
2003
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSheet, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2250
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSheet, isStandalone: false, selector: "p-sheet,[p-sheet]", inputs: { aria: "aria", disableBackdropClick: "disableBackdropClick", dismissButton: "dismissButton", open: "open"
|
|
2004
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSheet, isStandalone: false, selector: "p-sheet,[p-sheet]", inputs: { aria: "aria", background: "background", disableBackdropClick: "disableBackdropClick", dismissButton: "dismissButton", open: "open" }, outputs: { dismiss: "dismiss", motionHiddenEnd: "motionHiddenEnd", motionVisibleEnd: "motionVisibleEnd" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2251
2005
|
}
|
|
2252
2006
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSheet, decorators: [{
|
|
2253
2007
|
type: Component,
|
|
2254
2008
|
args: [{
|
|
2255
2009
|
selector: 'p-sheet,[p-sheet]',
|
|
2256
2010
|
template: '<ng-content />',
|
|
2257
|
-
inputs: ['aria', '
|
|
2011
|
+
inputs: ['aria', 'background', 'disableBackdropClick', 'dismissButton', 'open'],
|
|
2258
2012
|
outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],
|
|
2259
2013
|
standalone: false
|
|
2260
2014
|
}]
|
|
2261
2015
|
}] });
|
|
2262
2016
|
|
|
2263
|
-
class PSpinner extends
|
|
2017
|
+
class PSpinner extends BaseComponent {
|
|
2264
2018
|
aria;
|
|
2265
2019
|
size;
|
|
2266
|
-
theme;
|
|
2267
2020
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSpinner, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2268
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSpinner, isStandalone: false, selector: "p-spinner,[p-spinner]", inputs: { aria: "aria", size: "size"
|
|
2021
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSpinner, isStandalone: false, selector: "p-spinner,[p-spinner]", inputs: { aria: "aria", size: "size" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2269
2022
|
}
|
|
2270
2023
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSpinner, decorators: [{
|
|
2271
2024
|
type: Component,
|
|
2272
2025
|
args: [{
|
|
2273
2026
|
selector: 'p-spinner,[p-spinner]',
|
|
2274
2027
|
template: '<ng-content />',
|
|
2275
|
-
inputs: ['aria', 'size'
|
|
2028
|
+
inputs: ['aria', 'size'],
|
|
2276
2029
|
standalone: false
|
|
2277
2030
|
}]
|
|
2278
2031
|
}] });
|
|
2279
2032
|
|
|
2280
|
-
class PStepperHorizontal extends
|
|
2033
|
+
class PStepperHorizontal extends BaseComponent {
|
|
2281
2034
|
size;
|
|
2282
|
-
theme;
|
|
2283
|
-
/** @deprecated */
|
|
2284
|
-
stepChange = new EventEmitter();
|
|
2285
2035
|
update = new EventEmitter();
|
|
2286
2036
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PStepperHorizontal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2287
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PStepperHorizontal, isStandalone: false, selector: "p-stepper-horizontal,[p-stepper-horizontal]", inputs: { size: "size"
|
|
2037
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PStepperHorizontal, isStandalone: false, selector: "p-stepper-horizontal,[p-stepper-horizontal]", inputs: { size: "size" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2288
2038
|
}
|
|
2289
2039
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PStepperHorizontal, decorators: [{
|
|
2290
2040
|
type: Component,
|
|
2291
2041
|
args: [{
|
|
2292
2042
|
selector: 'p-stepper-horizontal,[p-stepper-horizontal]',
|
|
2293
2043
|
template: '<ng-content />',
|
|
2294
|
-
inputs: ['size'
|
|
2295
|
-
outputs: ['
|
|
2044
|
+
inputs: ['size'],
|
|
2045
|
+
outputs: ['update'],
|
|
2296
2046
|
standalone: false
|
|
2297
2047
|
}]
|
|
2298
2048
|
}] });
|
|
@@ -2313,7 +2063,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2313
2063
|
}]
|
|
2314
2064
|
}] });
|
|
2315
2065
|
|
|
2316
|
-
class PSwitch extends
|
|
2066
|
+
class PSwitch extends BaseComponent {
|
|
2317
2067
|
alignLabel;
|
|
2318
2068
|
checked;
|
|
2319
2069
|
compact;
|
|
@@ -2321,42 +2071,36 @@ class PSwitch extends BaseComponentWithTheme {
|
|
|
2321
2071
|
hideLabel;
|
|
2322
2072
|
loading;
|
|
2323
2073
|
stretch;
|
|
2324
|
-
theme;
|
|
2325
|
-
/** @deprecated */
|
|
2326
|
-
switchChange = new EventEmitter();
|
|
2327
2074
|
update = new EventEmitter();
|
|
2328
2075
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSwitch, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2329
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSwitch, isStandalone: false, selector: "p-switch,[p-switch]", inputs: { alignLabel: "alignLabel", checked: "checked", compact: "compact", disabled: "disabled", hideLabel: "hideLabel", loading: "loading", stretch: "stretch"
|
|
2076
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PSwitch, isStandalone: false, selector: "p-switch,[p-switch]", inputs: { alignLabel: "alignLabel", checked: "checked", compact: "compact", disabled: "disabled", hideLabel: "hideLabel", loading: "loading", stretch: "stretch" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2330
2077
|
}
|
|
2331
2078
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PSwitch, decorators: [{
|
|
2332
2079
|
type: Component,
|
|
2333
2080
|
args: [{
|
|
2334
2081
|
selector: 'p-switch,[p-switch]',
|
|
2335
2082
|
template: '<ng-content />',
|
|
2336
|
-
inputs: ['alignLabel', 'checked', 'compact', 'disabled', 'hideLabel', 'loading', 'stretch'
|
|
2337
|
-
outputs: ['
|
|
2083
|
+
inputs: ['alignLabel', 'checked', 'compact', 'disabled', 'hideLabel', 'loading', 'stretch'],
|
|
2084
|
+
outputs: ['update'],
|
|
2338
2085
|
standalone: false
|
|
2339
2086
|
}]
|
|
2340
2087
|
}] });
|
|
2341
2088
|
|
|
2342
|
-
class PTable extends
|
|
2089
|
+
class PTable extends BaseComponent {
|
|
2343
2090
|
caption;
|
|
2344
2091
|
compact;
|
|
2345
2092
|
layout;
|
|
2346
|
-
theme;
|
|
2347
|
-
/** @deprecated */
|
|
2348
|
-
sortingChange = new EventEmitter();
|
|
2349
2093
|
update = new EventEmitter();
|
|
2350
2094
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTable, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2351
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTable, isStandalone: false, selector: "p-table,[p-table]", inputs: { caption: "caption", compact: "compact", layout: "layout"
|
|
2095
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTable, isStandalone: false, selector: "p-table,[p-table]", inputs: { caption: "caption", compact: "compact", layout: "layout" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2352
2096
|
}
|
|
2353
2097
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTable, decorators: [{
|
|
2354
2098
|
type: Component,
|
|
2355
2099
|
args: [{
|
|
2356
2100
|
selector: 'p-table,[p-table]',
|
|
2357
2101
|
template: '<ng-content />',
|
|
2358
|
-
inputs: ['caption', 'compact', 'layout'
|
|
2359
|
-
outputs: ['
|
|
2102
|
+
inputs: ['caption', 'compact', 'layout'],
|
|
2103
|
+
outputs: ['update'],
|
|
2360
2104
|
standalone: false
|
|
2361
2105
|
}]
|
|
2362
2106
|
}] });
|
|
@@ -2445,54 +2189,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2445
2189
|
}]
|
|
2446
2190
|
}] });
|
|
2447
2191
|
|
|
2448
|
-
class PTabs extends
|
|
2192
|
+
class PTabs extends BaseComponent {
|
|
2449
2193
|
activeTabIndex;
|
|
2450
|
-
/** @deprecated */
|
|
2451
|
-
gradientColor;
|
|
2452
|
-
/** @deprecated */
|
|
2453
|
-
gradientColorScheme;
|
|
2454
2194
|
size;
|
|
2455
|
-
theme;
|
|
2456
2195
|
weight;
|
|
2457
|
-
/** @deprecated */
|
|
2458
|
-
tabChange = new EventEmitter();
|
|
2459
2196
|
update = new EventEmitter();
|
|
2460
2197
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2461
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTabs, isStandalone: false, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex",
|
|
2198
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTabs, isStandalone: false, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2462
2199
|
}
|
|
2463
2200
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTabs, decorators: [{
|
|
2464
2201
|
type: Component,
|
|
2465
2202
|
args: [{
|
|
2466
2203
|
selector: 'p-tabs,[p-tabs]',
|
|
2467
2204
|
template: '<ng-content />',
|
|
2468
|
-
inputs: ['activeTabIndex', '
|
|
2469
|
-
outputs: ['
|
|
2205
|
+
inputs: ['activeTabIndex', 'size', 'weight'],
|
|
2206
|
+
outputs: ['update'],
|
|
2470
2207
|
standalone: false
|
|
2471
2208
|
}]
|
|
2472
2209
|
}] });
|
|
2473
2210
|
|
|
2474
|
-
class PTabsBar extends
|
|
2211
|
+
class PTabsBar extends BaseComponent {
|
|
2475
2212
|
activeTabIndex;
|
|
2476
|
-
/** @deprecated */
|
|
2477
|
-
gradientColor;
|
|
2478
|
-
/** @deprecated */
|
|
2479
|
-
gradientColorScheme;
|
|
2480
2213
|
size;
|
|
2481
|
-
theme;
|
|
2482
2214
|
weight;
|
|
2483
|
-
/** @deprecated */
|
|
2484
|
-
tabChange = new EventEmitter();
|
|
2485
2215
|
update = new EventEmitter();
|
|
2486
2216
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTabsBar, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2487
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTabsBar, isStandalone: false, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex",
|
|
2217
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTabsBar, isStandalone: false, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2488
2218
|
}
|
|
2489
2219
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTabsBar, decorators: [{
|
|
2490
2220
|
type: Component,
|
|
2491
2221
|
args: [{
|
|
2492
2222
|
selector: 'p-tabs-bar,[p-tabs-bar]',
|
|
2493
2223
|
template: '<ng-content />',
|
|
2494
|
-
inputs: ['activeTabIndex', '
|
|
2495
|
-
outputs: ['
|
|
2224
|
+
inputs: ['activeTabIndex', 'size', 'weight'],
|
|
2225
|
+
outputs: ['update'],
|
|
2496
2226
|
standalone: false
|
|
2497
2227
|
}]
|
|
2498
2228
|
}] });
|
|
@@ -2512,112 +2242,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2512
2242
|
}]
|
|
2513
2243
|
}] });
|
|
2514
2244
|
|
|
2515
|
-
class PTag extends
|
|
2516
|
-
color;
|
|
2245
|
+
class PTag extends BaseComponent {
|
|
2517
2246
|
compact;
|
|
2518
2247
|
icon;
|
|
2519
2248
|
iconSource;
|
|
2520
|
-
|
|
2249
|
+
variant;
|
|
2521
2250
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTag, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2522
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTag, isStandalone: false, selector: "p-tag,[p-tag]", inputs: {
|
|
2251
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTag, isStandalone: false, selector: "p-tag,[p-tag]", inputs: { compact: "compact", icon: "icon", iconSource: "iconSource", variant: "variant" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2523
2252
|
}
|
|
2524
2253
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTag, decorators: [{
|
|
2525
2254
|
type: Component,
|
|
2526
2255
|
args: [{
|
|
2527
2256
|
selector: 'p-tag,[p-tag]',
|
|
2528
2257
|
template: '<ng-content />',
|
|
2529
|
-
inputs: ['
|
|
2258
|
+
inputs: ['compact', 'icon', 'iconSource', 'variant'],
|
|
2530
2259
|
standalone: false
|
|
2531
2260
|
}]
|
|
2532
2261
|
}] });
|
|
2533
2262
|
|
|
2534
|
-
class PTagDismissible extends
|
|
2263
|
+
class PTagDismissible extends BaseComponent {
|
|
2535
2264
|
aria;
|
|
2536
|
-
|
|
2265
|
+
compact;
|
|
2537
2266
|
label;
|
|
2538
|
-
theme;
|
|
2539
2267
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTagDismissible, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2540
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTagDismissible, isStandalone: false, selector: "p-tag-dismissible,[p-tag-dismissible]", inputs: { aria: "aria",
|
|
2268
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTagDismissible, isStandalone: false, selector: "p-tag-dismissible,[p-tag-dismissible]", inputs: { aria: "aria", compact: "compact", label: "label" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2541
2269
|
}
|
|
2542
2270
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTagDismissible, decorators: [{
|
|
2543
2271
|
type: Component,
|
|
2544
2272
|
args: [{
|
|
2545
2273
|
selector: 'p-tag-dismissible,[p-tag-dismissible]',
|
|
2546
2274
|
template: '<ng-content />',
|
|
2547
|
-
inputs: ['aria', '
|
|
2275
|
+
inputs: ['aria', 'compact', 'label'],
|
|
2548
2276
|
standalone: false
|
|
2549
2277
|
}]
|
|
2550
2278
|
}] });
|
|
2551
2279
|
|
|
2552
|
-
class PText extends
|
|
2280
|
+
class PText extends BaseComponent {
|
|
2553
2281
|
align;
|
|
2554
2282
|
color;
|
|
2555
2283
|
ellipsis;
|
|
2556
2284
|
size;
|
|
2557
2285
|
tag;
|
|
2558
|
-
theme;
|
|
2559
2286
|
weight;
|
|
2560
2287
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PText, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2561
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PText, isStandalone: false, selector: "p-text,[p-text]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag",
|
|
2288
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PText, isStandalone: false, selector: "p-text,[p-text]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag", weight: "weight" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2562
2289
|
}
|
|
2563
2290
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PText, decorators: [{
|
|
2564
2291
|
type: Component,
|
|
2565
2292
|
args: [{
|
|
2566
2293
|
selector: 'p-text,[p-text]',
|
|
2567
2294
|
template: '<ng-content />',
|
|
2568
|
-
inputs: ['align', 'color', 'ellipsis', 'size', 'tag', '
|
|
2569
|
-
standalone: false
|
|
2570
|
-
}]
|
|
2571
|
-
}] });
|
|
2572
|
-
|
|
2573
|
-
/** @deprecated since v3.29.0, will be removed with next major release. Please use one of the specific input components instead: `p-input-date`, `p-input-email`, `p-input-number`, `p-input-password`, `p-input-search`, `p-input-tel`, `p-input-text`, `p-input-time` or `p-input-url`. */
|
|
2574
|
-
class PTextFieldWrapper extends BaseComponentWithTheme {
|
|
2575
|
-
actionIcon;
|
|
2576
|
-
actionLoading;
|
|
2577
|
-
description;
|
|
2578
|
-
hideLabel;
|
|
2579
|
-
label;
|
|
2580
|
-
message;
|
|
2581
|
-
/** @deprecated */
|
|
2582
|
-
showCharacterCount;
|
|
2583
|
-
showCounter;
|
|
2584
|
-
showPasswordToggle;
|
|
2585
|
-
state;
|
|
2586
|
-
submitButton;
|
|
2587
|
-
theme;
|
|
2588
|
-
unit;
|
|
2589
|
-
unitPosition;
|
|
2590
|
-
action = new EventEmitter();
|
|
2591
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextFieldWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2592
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTextFieldWrapper, isStandalone: false, selector: "p-text-field-wrapper,[p-text-field-wrapper]", inputs: { actionIcon: "actionIcon", actionLoading: "actionLoading", description: "description", hideLabel: "hideLabel", label: "label", message: "message", showCharacterCount: "showCharacterCount", showCounter: "showCounter", showPasswordToggle: "showPasswordToggle", state: "state", submitButton: "submitButton", theme: "theme", unit: "unit", unitPosition: "unitPosition" }, outputs: { action: "action" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2593
|
-
}
|
|
2594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextFieldWrapper, decorators: [{
|
|
2595
|
-
type: Component,
|
|
2596
|
-
args: [{
|
|
2597
|
-
selector: 'p-text-field-wrapper,[p-text-field-wrapper]',
|
|
2598
|
-
template: '<ng-content />',
|
|
2599
|
-
inputs: ['actionIcon', 'actionLoading', 'description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'showPasswordToggle', 'state', 'submitButton', 'theme', 'unit', 'unitPosition'],
|
|
2600
|
-
outputs: ['action'],
|
|
2295
|
+
inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'weight'],
|
|
2601
2296
|
standalone: false
|
|
2602
2297
|
}]
|
|
2603
2298
|
}] });
|
|
2604
2299
|
|
|
2605
|
-
class PTextList extends
|
|
2606
|
-
/** @deprecated */
|
|
2607
|
-
listType;
|
|
2608
|
-
/** @deprecated */
|
|
2609
|
-
orderType;
|
|
2610
|
-
theme;
|
|
2300
|
+
class PTextList extends BaseComponent {
|
|
2611
2301
|
type;
|
|
2612
2302
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextList, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2613
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTextList, isStandalone: false, selector: "p-text-list,[p-text-list]", inputs: {
|
|
2303
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTextList, isStandalone: false, selector: "p-text-list,[p-text-list]", inputs: { type: "type" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2614
2304
|
}
|
|
2615
2305
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextList, decorators: [{
|
|
2616
2306
|
type: Component,
|
|
2617
2307
|
args: [{
|
|
2618
2308
|
selector: 'p-text-list,[p-text-list]',
|
|
2619
2309
|
template: '<ng-content />',
|
|
2620
|
-
inputs: ['
|
|
2310
|
+
inputs: ['type'],
|
|
2621
2311
|
standalone: false
|
|
2622
2312
|
}]
|
|
2623
2313
|
}] });
|
|
@@ -2635,11 +2325,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2635
2325
|
}]
|
|
2636
2326
|
}] });
|
|
2637
2327
|
|
|
2638
|
-
class PTextarea extends
|
|
2328
|
+
class PTextarea extends BaseComponent {
|
|
2639
2329
|
_renderer;
|
|
2640
2330
|
_elementRef;
|
|
2641
2331
|
_cdr;
|
|
2642
2332
|
autoComplete;
|
|
2333
|
+
compact;
|
|
2643
2334
|
counter;
|
|
2644
2335
|
description;
|
|
2645
2336
|
disabled;
|
|
@@ -2657,7 +2348,6 @@ class PTextarea extends BaseComponentWithTheme {
|
|
|
2657
2348
|
rows;
|
|
2658
2349
|
spellCheck;
|
|
2659
2350
|
state;
|
|
2660
|
-
theme;
|
|
2661
2351
|
value;
|
|
2662
2352
|
wrap;
|
|
2663
2353
|
blur = new EventEmitter();
|
|
@@ -2684,7 +2374,7 @@ class PTextarea extends BaseComponentWithTheme {
|
|
|
2684
2374
|
this._renderer.setProperty(this._elementRef.nativeElement, 'disabled', isDisabled);
|
|
2685
2375
|
}
|
|
2686
2376
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextarea, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2687
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTextarea, isStandalone: false, selector: "p-textarea,[p-textarea]", inputs: { autoComplete: "autoComplete", counter: "counter", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", resize: "resize", rows: "rows", spellCheck: "spellCheck", state: "state",
|
|
2377
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTextarea, isStandalone: false, selector: "p-textarea,[p-textarea]", inputs: { autoComplete: "autoComplete", compact: "compact", counter: "counter", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", resize: "resize", rows: "rows", spellCheck: "spellCheck", state: "state", value: "value", wrap: "wrap" }, outputs: { blur: "blur", change: "change", input: "input" }, host: { listeners: { "input": "_onChange($event.target.value)", "blur": "_onTouched()" } }, providers: [
|
|
2688
2378
|
{
|
|
2689
2379
|
provide: NG_VALUE_ACCESSOR,
|
|
2690
2380
|
useExisting: forwardRef(() => PTextarea),
|
|
@@ -2697,7 +2387,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2697
2387
|
args: [{
|
|
2698
2388
|
selector: 'p-textarea,[p-textarea]',
|
|
2699
2389
|
template: '<ng-content />',
|
|
2700
|
-
inputs: ['autoComplete', 'counter', 'description', 'disabled', 'form', 'hideLabel', 'label', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'resize', 'rows', 'spellCheck', 'state', '
|
|
2390
|
+
inputs: ['autoComplete', 'compact', 'counter', 'description', 'disabled', 'form', 'hideLabel', 'label', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'resize', 'rows', 'spellCheck', 'state', 'value', 'wrap'],
|
|
2701
2391
|
outputs: ['blur', 'change', 'input'],
|
|
2702
2392
|
standalone: false,
|
|
2703
2393
|
providers: [
|
|
@@ -2714,60 +2404,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2714
2404
|
}]
|
|
2715
2405
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }] });
|
|
2716
2406
|
|
|
2717
|
-
|
|
2718
|
-
class PTextareaWrapper extends BaseComponentWithTheme {
|
|
2719
|
-
description;
|
|
2720
|
-
hideLabel;
|
|
2721
|
-
label;
|
|
2722
|
-
message;
|
|
2723
|
-
/** @deprecated */
|
|
2724
|
-
showCharacterCount;
|
|
2725
|
-
showCounter;
|
|
2726
|
-
state;
|
|
2727
|
-
theme;
|
|
2728
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextareaWrapper, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2729
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PTextareaWrapper, isStandalone: false, selector: "p-textarea-wrapper,[p-textarea-wrapper]", inputs: { description: "description", hideLabel: "hideLabel", label: "label", message: "message", showCharacterCount: "showCharacterCount", showCounter: "showCounter", state: "state", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2730
|
-
}
|
|
2731
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PTextareaWrapper, decorators: [{
|
|
2732
|
-
type: Component,
|
|
2733
|
-
args: [{
|
|
2734
|
-
selector: 'p-textarea-wrapper,[p-textarea-wrapper]',
|
|
2735
|
-
template: '<ng-content />',
|
|
2736
|
-
inputs: ['description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'state', 'theme'],
|
|
2737
|
-
standalone: false
|
|
2738
|
-
}]
|
|
2739
|
-
}] });
|
|
2740
|
-
|
|
2741
|
-
class PToast extends BaseComponentWithTheme {
|
|
2742
|
-
theme;
|
|
2407
|
+
class PToast extends BaseComponent {
|
|
2743
2408
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PToast, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2744
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PToast, isStandalone: false, selector: "p-toast,[p-toast]",
|
|
2409
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PToast, isStandalone: false, selector: "p-toast,[p-toast]", usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2745
2410
|
}
|
|
2746
2411
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PToast, decorators: [{
|
|
2747
2412
|
type: Component,
|
|
2748
2413
|
args: [{
|
|
2749
2414
|
selector: 'p-toast,[p-toast]',
|
|
2750
2415
|
template: '<ng-content />',
|
|
2751
|
-
inputs: ['theme'],
|
|
2752
2416
|
standalone: false
|
|
2753
2417
|
}]
|
|
2754
2418
|
}] });
|
|
2755
2419
|
|
|
2756
|
-
class PWordmark extends
|
|
2420
|
+
class PWordmark extends BaseComponent {
|
|
2757
2421
|
aria;
|
|
2758
2422
|
href;
|
|
2759
2423
|
size;
|
|
2760
2424
|
target;
|
|
2761
|
-
theme;
|
|
2762
2425
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PWordmark, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2763
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PWordmark, isStandalone: false, selector: "p-wordmark,[p-wordmark]", inputs: { aria: "aria", href: "href", size: "size", target: "target"
|
|
2426
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: PWordmark, isStandalone: false, selector: "p-wordmark,[p-wordmark]", inputs: { aria: "aria", href: "href", size: "size", target: "target" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2764
2427
|
}
|
|
2765
2428
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PWordmark, decorators: [{
|
|
2766
2429
|
type: Component,
|
|
2767
2430
|
args: [{
|
|
2768
2431
|
selector: 'p-wordmark,[p-wordmark]',
|
|
2769
2432
|
template: '<ng-content />',
|
|
2770
|
-
inputs: ['aria', 'href', 'size', 'target'
|
|
2433
|
+
inputs: ['aria', 'href', 'size', 'target'],
|
|
2771
2434
|
standalone: false
|
|
2772
2435
|
}]
|
|
2773
2436
|
}] });
|
|
@@ -2776,14 +2439,11 @@ const DECLARATIONS = [
|
|
|
2776
2439
|
PAccordion,
|
|
2777
2440
|
PBanner,
|
|
2778
2441
|
PButton,
|
|
2779
|
-
PButtonGroup,
|
|
2780
2442
|
PButtonPure,
|
|
2781
2443
|
PButtonTile,
|
|
2782
2444
|
PCanvas,
|
|
2783
2445
|
PCarousel,
|
|
2784
2446
|
PCheckbox,
|
|
2785
|
-
PCheckboxWrapper,
|
|
2786
|
-
PContentWrapper,
|
|
2787
2447
|
PCrest,
|
|
2788
2448
|
PDisplay,
|
|
2789
2449
|
PDivider,
|
|
@@ -2791,19 +2451,14 @@ const DECLARATIONS = [
|
|
|
2791
2451
|
PDrilldownItem,
|
|
2792
2452
|
PDrilldownLink,
|
|
2793
2453
|
PFieldset,
|
|
2794
|
-
PFieldsetWrapper,
|
|
2795
2454
|
PFlag,
|
|
2796
|
-
PFlex,
|
|
2797
|
-
PFlexItem,
|
|
2798
2455
|
PFlyout,
|
|
2799
|
-
PGrid,
|
|
2800
|
-
PGridItem,
|
|
2801
2456
|
PHeading,
|
|
2802
|
-
PHeadline,
|
|
2803
2457
|
PIcon,
|
|
2804
2458
|
PInlineNotification,
|
|
2805
2459
|
PInputDate,
|
|
2806
2460
|
PInputEmail,
|
|
2461
|
+
PInputMonth,
|
|
2807
2462
|
PInputNumber,
|
|
2808
2463
|
PInputPassword,
|
|
2809
2464
|
PInputSearch,
|
|
@@ -2811,13 +2466,11 @@ const DECLARATIONS = [
|
|
|
2811
2466
|
PInputText,
|
|
2812
2467
|
PInputTime,
|
|
2813
2468
|
PInputUrl,
|
|
2469
|
+
PInputWeek,
|
|
2814
2470
|
PLink,
|
|
2815
2471
|
PLinkPure,
|
|
2816
|
-
PLinkSocial,
|
|
2817
2472
|
PLinkTile,
|
|
2818
|
-
PLinkTileModelSignature,
|
|
2819
2473
|
PLinkTileProduct,
|
|
2820
|
-
PMarque,
|
|
2821
2474
|
PModal,
|
|
2822
2475
|
PModelSignature,
|
|
2823
2476
|
PMultiSelect,
|
|
@@ -2826,7 +2479,6 @@ const DECLARATIONS = [
|
|
|
2826
2479
|
PPagination,
|
|
2827
2480
|
PPinCode,
|
|
2828
2481
|
PPopover,
|
|
2829
|
-
PRadioButtonWrapper,
|
|
2830
2482
|
PRadioGroup,
|
|
2831
2483
|
PRadioGroupOption,
|
|
2832
2484
|
PScroller,
|
|
@@ -2834,7 +2486,6 @@ const DECLARATIONS = [
|
|
|
2834
2486
|
PSegmentedControlItem,
|
|
2835
2487
|
PSelect,
|
|
2836
2488
|
PSelectOption,
|
|
2837
|
-
PSelectWrapper,
|
|
2838
2489
|
PSheet,
|
|
2839
2490
|
PSpinner,
|
|
2840
2491
|
PStepperHorizontal,
|
|
@@ -2853,25 +2504,20 @@ const DECLARATIONS = [
|
|
|
2853
2504
|
PTag,
|
|
2854
2505
|
PTagDismissible,
|
|
2855
2506
|
PText,
|
|
2856
|
-
PTextFieldWrapper,
|
|
2857
2507
|
PTextList,
|
|
2858
2508
|
PTextListItem,
|
|
2859
2509
|
PTextarea,
|
|
2860
|
-
PTextareaWrapper,
|
|
2861
2510
|
PToast,
|
|
2862
2511
|
PWordmark
|
|
2863
2512
|
];
|
|
2864
2513
|
|
|
2865
2514
|
class DefaultConfig {
|
|
2866
2515
|
prefix = '';
|
|
2867
|
-
theme; // since theme exists on almost every component, it is defined here kind of like a global prop
|
|
2868
2516
|
}
|
|
2869
2517
|
// TODO: unit tests are missing
|
|
2870
2518
|
class PorscheDesignSystemModule {
|
|
2871
|
-
theme$ = inject(THEME_TOKEN);
|
|
2872
2519
|
constructor(configParam) {
|
|
2873
2520
|
const configs = configParam || [new DefaultConfig()];
|
|
2874
|
-
this.theme$.next(configs[0].theme || 'light'); // first config sets the theme
|
|
2875
2521
|
configs.forEach(load);
|
|
2876
2522
|
}
|
|
2877
2523
|
static load(config) {
|
|
@@ -2887,25 +2533,14 @@ class PorscheDesignSystemModule {
|
|
|
2887
2533
|
};
|
|
2888
2534
|
}
|
|
2889
2535
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2890
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton,
|
|
2891
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PorscheDesignSystemModule
|
|
2892
|
-
{
|
|
2893
|
-
provide: THEME_TOKEN,
|
|
2894
|
-
useValue: new BehaviorSubject('light'),
|
|
2895
|
-
},
|
|
2896
|
-
] });
|
|
2536
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFlag, PFlyout, PHeading, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkTile, PLinkTileProduct, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextList, PTextListItem, PTextarea, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFlag, PFlyout, PHeading, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkTile, PLinkTileProduct, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextList, PTextListItem, PTextarea, PToast, PWordmark] });
|
|
2537
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PorscheDesignSystemModule });
|
|
2897
2538
|
}
|
|
2898
2539
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
2899
2540
|
type: NgModule,
|
|
2900
2541
|
args: [{
|
|
2901
2542
|
declarations: DECLARATIONS,
|
|
2902
2543
|
exports: DECLARATIONS,
|
|
2903
|
-
providers: [
|
|
2904
|
-
{
|
|
2905
|
-
provide: THEME_TOKEN,
|
|
2906
|
-
useValue: new BehaviorSubject('light'),
|
|
2907
|
-
},
|
|
2908
|
-
],
|
|
2909
2544
|
}]
|
|
2910
2545
|
}], ctorParameters: () => [{ type: DefaultConfig, decorators: [{
|
|
2911
2546
|
type: Optional
|
|
@@ -2930,5 +2565,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2930
2565
|
* Generated bundle index. Do not edit.
|
|
2931
2566
|
*/
|
|
2932
2567
|
|
|
2933
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton,
|
|
2568
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFlag, PFlyout, PHeading, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkTile, PLinkTileProduct, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextList, PTextListItem, PTextarea, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2934
2569
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|