@porsche-design-system/components-angular 2.13.0-rc.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.
Files changed (124) hide show
  1. package/CHANGELOG.md +1428 -0
  2. package/LICENSE +59 -0
  3. package/OSS_NOTICE +20981 -0
  4. package/README.md +74 -0
  5. package/components-wrapper.module.d.ts +60 -0
  6. package/esm2020/components-wrapper.module.mjs +87 -0
  7. package/esm2020/lib/components/accordion.wrapper.mjs +33 -0
  8. package/esm2020/lib/components/banner.wrapper.mjs +33 -0
  9. package/esm2020/lib/components/barrel.mjs +138 -0
  10. package/esm2020/lib/components/button-group.wrapper.mjs +30 -0
  11. package/esm2020/lib/components/button-pure.wrapper.mjs +30 -0
  12. package/esm2020/lib/components/button.wrapper.mjs +30 -0
  13. package/esm2020/lib/components/checkbox-wrapper.wrapper.mjs +30 -0
  14. package/esm2020/lib/components/content-wrapper.wrapper.mjs +30 -0
  15. package/esm2020/lib/components/divider.wrapper.mjs +30 -0
  16. package/esm2020/lib/components/fieldset-wrapper.wrapper.mjs +30 -0
  17. package/esm2020/lib/components/flex-item.wrapper.mjs +30 -0
  18. package/esm2020/lib/components/flex.wrapper.mjs +30 -0
  19. package/esm2020/lib/components/grid-item.wrapper.mjs +30 -0
  20. package/esm2020/lib/components/grid.wrapper.mjs +30 -0
  21. package/esm2020/lib/components/headline.wrapper.mjs +30 -0
  22. package/esm2020/lib/components/icon.wrapper.mjs +30 -0
  23. package/esm2020/lib/components/inline-notification.wrapper.mjs +33 -0
  24. package/esm2020/lib/components/link-pure.wrapper.mjs +30 -0
  25. package/esm2020/lib/components/link-social.wrapper.mjs +30 -0
  26. package/esm2020/lib/components/link.wrapper.mjs +30 -0
  27. package/esm2020/lib/components/marque.wrapper.mjs +30 -0
  28. package/esm2020/lib/components/modal.wrapper.mjs +33 -0
  29. package/esm2020/lib/components/pagination.wrapper.mjs +33 -0
  30. package/esm2020/lib/components/popover.wrapper.mjs +30 -0
  31. package/esm2020/lib/components/radio-button-wrapper.wrapper.mjs +30 -0
  32. package/esm2020/lib/components/select-wrapper.wrapper.mjs +30 -0
  33. package/esm2020/lib/components/spinner.wrapper.mjs +30 -0
  34. package/esm2020/lib/components/switch.wrapper.mjs +33 -0
  35. package/esm2020/lib/components/table-body.wrapper.mjs +26 -0
  36. package/esm2020/lib/components/table-cell.wrapper.mjs +30 -0
  37. package/esm2020/lib/components/table-head-cell.wrapper.mjs +30 -0
  38. package/esm2020/lib/components/table-head-row.wrapper.mjs +26 -0
  39. package/esm2020/lib/components/table-head.wrapper.mjs +26 -0
  40. package/esm2020/lib/components/table-row.wrapper.mjs +26 -0
  41. package/esm2020/lib/components/table.wrapper.mjs +33 -0
  42. package/esm2020/lib/components/tabs-bar.wrapper.mjs +33 -0
  43. package/esm2020/lib/components/tabs-item.wrapper.mjs +30 -0
  44. package/esm2020/lib/components/tabs.wrapper.mjs +33 -0
  45. package/esm2020/lib/components/tag-dismissible.wrapper.mjs +30 -0
  46. package/esm2020/lib/components/tag.wrapper.mjs +30 -0
  47. package/esm2020/lib/components/text-field-wrapper.wrapper.mjs +30 -0
  48. package/esm2020/lib/components/text-list-item.wrapper.mjs +26 -0
  49. package/esm2020/lib/components/text-list.wrapper.mjs +30 -0
  50. package/esm2020/lib/components/text.wrapper.mjs +30 -0
  51. package/esm2020/lib/components/textarea-wrapper.wrapper.mjs +30 -0
  52. package/esm2020/lib/components/toast.wrapper.mjs +30 -0
  53. package/esm2020/lib/types.mjs +2 -0
  54. package/esm2020/porsche-design-system-components-angular.mjs +5 -0
  55. package/esm2020/public-api.mjs +6 -0
  56. package/esm2020/skeleton-helper.mjs +4 -0
  57. package/esm2020/toast-manager.mjs +17 -0
  58. package/esm2020/utils.mjs +41 -0
  59. package/fesm2015/porsche-design-system-components-angular.mjs +1289 -0
  60. package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -0
  61. package/fesm2020/porsche-design-system-components-angular.mjs +1287 -0
  62. package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -0
  63. package/lib/components/accordion.wrapper.d.ts +17 -0
  64. package/lib/components/banner.wrapper.d.ts +15 -0
  65. package/lib/components/barrel.d.ts +91 -0
  66. package/lib/components/button-group.wrapper.d.ts +11 -0
  67. package/lib/components/button-pure.wrapper.d.ts +24 -0
  68. package/lib/components/button.wrapper.d.ts +20 -0
  69. package/lib/components/checkbox-wrapper.wrapper.d.ts +14 -0
  70. package/lib/components/content-wrapper.wrapper.d.ts +13 -0
  71. package/lib/components/divider.wrapper.d.ts +13 -0
  72. package/lib/components/fieldset-wrapper.wrapper.d.ts +15 -0
  73. package/lib/components/flex-item.wrapper.d.ts +16 -0
  74. package/lib/components/flex.wrapper.d.ts +16 -0
  75. package/lib/components/grid-item.wrapper.d.ts +12 -0
  76. package/lib/components/grid.wrapper.d.ts +13 -0
  77. package/lib/components/headline.wrapper.d.ts +16 -0
  78. package/lib/components/icon.wrapper.d.ts +17 -0
  79. package/lib/components/inline-notification.wrapper.d.ts +20 -0
  80. package/lib/components/link-pure.wrapper.d.ts +24 -0
  81. package/lib/components/link-social.wrapper.d.ts +17 -0
  82. package/lib/components/link.wrapper.d.ts +20 -0
  83. package/lib/components/marque.wrapper.d.ts +15 -0
  84. package/lib/components/modal.wrapper.d.ts +17 -0
  85. package/lib/components/pagination.wrapper.d.ts +20 -0
  86. package/lib/components/popover.wrapper.d.ts +13 -0
  87. package/lib/components/radio-button-wrapper.wrapper.d.ts +14 -0
  88. package/lib/components/select-wrapper.wrapper.d.ts +19 -0
  89. package/lib/components/spinner.wrapper.d.ts +13 -0
  90. package/lib/components/switch.wrapper.d.ts +19 -0
  91. package/lib/components/table-body.wrapper.d.ts +9 -0
  92. package/lib/components/table-cell.wrapper.d.ts +10 -0
  93. package/lib/components/table-head-cell.wrapper.d.ts +13 -0
  94. package/lib/components/table-head-row.wrapper.d.ts +9 -0
  95. package/lib/components/table-head.wrapper.d.ts +9 -0
  96. package/lib/components/table-row.wrapper.d.ts +9 -0
  97. package/lib/components/table.wrapper.d.ts +12 -0
  98. package/lib/components/tabs-bar.wrapper.d.ts +16 -0
  99. package/lib/components/tabs-item.wrapper.d.ts +10 -0
  100. package/lib/components/tabs.wrapper.d.ts +16 -0
  101. package/lib/components/tag-dismissible.wrapper.d.ts +13 -0
  102. package/lib/components/tag.wrapper.d.ts +14 -0
  103. package/lib/components/text-field-wrapper.wrapper.d.ts +18 -0
  104. package/lib/components/text-list-item.wrapper.d.ts +9 -0
  105. package/lib/components/text-list.wrapper.d.ts +13 -0
  106. package/lib/components/text.wrapper.d.ts +17 -0
  107. package/lib/components/textarea-wrapper.wrapper.d.ts +16 -0
  108. package/lib/components/toast.wrapper.d.ts +11 -0
  109. package/lib/types.d.ts +543 -0
  110. package/package.json +57 -0
  111. package/partials/esm/partials.js +1 -0
  112. package/partials/package.json +6 -0
  113. package/partials/partials.d.ts +1 -0
  114. package/partials/partials.js +14 -0
  115. package/porsche-design-system-components-angular.d.ts +5 -0
  116. package/public-api.d.ts +5 -0
  117. package/skeleton-helper.d.ts +3 -0
  118. package/toast-manager.d.ts +7 -0
  119. package/utilities/js/esm/js.js +1 -0
  120. package/utilities/js/js.d.ts +1 -0
  121. package/utilities/js/js.js +14 -0
  122. package/utilities/js/package.json +6 -0
  123. package/utilities/scss.scss +1 -0
  124. package/utils.d.ts +7 -0
@@ -0,0 +1,1287 @@
1
+ import { load } from '@porsche-design-system/components-js';
2
+ export { componentsReady } from '@porsche-design-system/components-js';
3
+ import { __decorate } from 'tslib';
4
+ import * as i0 from '@angular/core';
5
+ import { EventEmitter, Component, ChangeDetectionStrategy, InjectionToken, NgModule, Optional, Injectable } from '@angular/core';
6
+
7
+ const proxyInputs = (component, inputs) => {
8
+ const callback = (item) => {
9
+ Object.defineProperty(component.prototype, item, {
10
+ get() {
11
+ return this.el[item];
12
+ },
13
+ set(val) {
14
+ this.z.runOutsideAngular(() => (this.el[item] = val));
15
+ },
16
+ });
17
+ };
18
+ inputs.forEach(callback);
19
+ };
20
+ // NOTE: only relevant if components use the @Method() decorator
21
+ // currently our AngularWrapperGenerator doesn't support this
22
+ // const proxyMethods = (Cmp: any, methods: string[]) => {
23
+ // const Prototype = Cmp.prototype;
24
+ // methods.forEach((methodName) => {
25
+ // Prototype[methodName] = function () {
26
+ // const args = arguments;
27
+ // return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
28
+ // };
29
+ // });
30
+ // };
31
+ const proxyOutputs = (instance, events) => {
32
+ events.forEach((event) => (instance[event] = new EventEmitter()));
33
+ };
34
+ // tslint:disable-next-line: only-arrow-functions
35
+ function ProxyCmp({ inputs /*, methods*/ }) {
36
+ return function (component) {
37
+ if (inputs) {
38
+ proxyInputs(component, inputs);
39
+ }
40
+ // if (methods) {
41
+ // proxyMethods(component, methods);
42
+ // }
43
+ return component;
44
+ };
45
+ }
46
+
47
+ const inputs$D = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
48
+ const outputs$8 = ['accordionChange'];
49
+ let PAccordion = class PAccordion {
50
+ constructor(c, r, z) {
51
+ this.z = z;
52
+ c.detach();
53
+ this.el = r.nativeElement;
54
+ proxyOutputs(this, outputs$8);
55
+ }
56
+ };
57
+ PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
58
+ PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
59
+ PAccordion = __decorate([
60
+ ProxyCmp({
61
+ inputs: inputs$D
62
+ })
63
+ ], PAccordion);
64
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAccordion, decorators: [{
65
+ type: Component,
66
+ args: [{
67
+ selector: 'p-accordion,[p-accordion]',
68
+ changeDetection: ChangeDetectionStrategy.OnPush,
69
+ template: '<ng-content></ng-content>',
70
+ inputs: inputs$D,
71
+ outputs: outputs$8
72
+ }]
73
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
74
+
75
+ const inputs$C = ['persistent', 'state', 'theme', 'width'];
76
+ const outputs$7 = ['dismiss'];
77
+ let PBanner = class PBanner {
78
+ constructor(c, r, z) {
79
+ this.z = z;
80
+ c.detach();
81
+ this.el = r.nativeElement;
82
+ proxyOutputs(this, outputs$7);
83
+ }
84
+ };
85
+ PBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
86
+ PBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PBanner, selector: "p-banner,[p-banner]", inputs: { persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
87
+ PBanner = __decorate([
88
+ ProxyCmp({
89
+ inputs: inputs$C
90
+ })
91
+ ], PBanner);
92
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PBanner, decorators: [{
93
+ type: Component,
94
+ args: [{
95
+ selector: 'p-banner,[p-banner]',
96
+ changeDetection: ChangeDetectionStrategy.OnPush,
97
+ template: '<ng-content></ng-content>',
98
+ inputs: inputs$C,
99
+ outputs: outputs$7
100
+ }]
101
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
102
+
103
+ const inputs$B = ['aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'tabbable', 'theme', 'type', 'variant'];
104
+ let PButton = class PButton {
105
+ constructor(c, r, z) {
106
+ this.z = z;
107
+ c.detach();
108
+ this.el = r.nativeElement;
109
+ }
110
+ };
111
+ PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
112
+ PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PButton, selector: "p-button,[p-button]", inputs: { aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", tabbable: "tabbable", theme: "theme", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
113
+ PButton = __decorate([
114
+ ProxyCmp({
115
+ inputs: inputs$B
116
+ })
117
+ ], PButton);
118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, decorators: [{
119
+ type: Component,
120
+ args: [{
121
+ selector: 'p-button,[p-button]',
122
+ changeDetection: ChangeDetectionStrategy.OnPush,
123
+ template: '<ng-content></ng-content>',
124
+ inputs: inputs$B
125
+ }]
126
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
127
+
128
+ const inputs$A = ['direction'];
129
+ let PButtonGroup = class PButtonGroup {
130
+ constructor(c, r, z) {
131
+ this.z = z;
132
+ c.detach();
133
+ this.el = r.nativeElement;
134
+ }
135
+ };
136
+ PButtonGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
137
+ PButtonGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PButtonGroup, selector: "p-button-group,[p-button-group]", inputs: { direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
138
+ PButtonGroup = __decorate([
139
+ ProxyCmp({
140
+ inputs: inputs$A
141
+ })
142
+ ], PButtonGroup);
143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonGroup, decorators: [{
144
+ type: Component,
145
+ args: [{
146
+ selector: 'p-button-group,[p-button-group]',
147
+ changeDetection: ChangeDetectionStrategy.OnPush,
148
+ template: '<ng-content></ng-content>',
149
+ inputs: inputs$A
150
+ }]
151
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
152
+
153
+ const inputs$z = ['active', 'alignLabel', 'aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'size', 'stretch', 'tabbable', 'theme', 'type', 'weight'];
154
+ let PButtonPure = class PButtonPure {
155
+ constructor(c, r, z) {
156
+ this.z = z;
157
+ c.detach();
158
+ this.el = r.nativeElement;
159
+ }
160
+ };
161
+ PButtonPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
162
+ PButtonPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PButtonPure, selector: "p-button-pure,[p-button-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", size: "size", stretch: "stretch", tabbable: "tabbable", theme: "theme", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
163
+ PButtonPure = __decorate([
164
+ ProxyCmp({
165
+ inputs: inputs$z
166
+ })
167
+ ], PButtonPure);
168
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonPure, decorators: [{
169
+ type: Component,
170
+ args: [{
171
+ selector: 'p-button-pure,[p-button-pure]',
172
+ changeDetection: ChangeDetectionStrategy.OnPush,
173
+ template: '<ng-content></ng-content>',
174
+ inputs: inputs$z
175
+ }]
176
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
177
+
178
+ const inputs$y = ['hideLabel', 'label', 'message', 'state'];
179
+ let PCheckboxWrapper = class PCheckboxWrapper {
180
+ constructor(c, r, z) {
181
+ this.z = z;
182
+ c.detach();
183
+ this.el = r.nativeElement;
184
+ }
185
+ };
186
+ PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCheckboxWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
187
+ PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
188
+ PCheckboxWrapper = __decorate([
189
+ ProxyCmp({
190
+ inputs: inputs$y
191
+ })
192
+ ], PCheckboxWrapper);
193
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCheckboxWrapper, decorators: [{
194
+ type: Component,
195
+ args: [{
196
+ selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
197
+ changeDetection: ChangeDetectionStrategy.OnPush,
198
+ template: '<ng-content></ng-content>',
199
+ inputs: inputs$y
200
+ }]
201
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
202
+
203
+ const inputs$x = ['backgroundColor', 'theme', 'width'];
204
+ let PContentWrapper = class PContentWrapper {
205
+ constructor(c, r, z) {
206
+ this.z = z;
207
+ c.detach();
208
+ this.el = r.nativeElement;
209
+ }
210
+ };
211
+ PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PContentWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
212
+ PContentWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PContentWrapper, selector: "p-content-wrapper,[p-content-wrapper]", inputs: { backgroundColor: "backgroundColor", theme: "theme", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
213
+ PContentWrapper = __decorate([
214
+ ProxyCmp({
215
+ inputs: inputs$x
216
+ })
217
+ ], PContentWrapper);
218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PContentWrapper, decorators: [{
219
+ type: Component,
220
+ args: [{
221
+ selector: 'p-content-wrapper,[p-content-wrapper]',
222
+ changeDetection: ChangeDetectionStrategy.OnPush,
223
+ template: '<ng-content></ng-content>',
224
+ inputs: inputs$x
225
+ }]
226
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
227
+
228
+ const inputs$w = ['color', 'orientation', 'theme'];
229
+ let PDivider = class PDivider {
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ }
235
+ };
236
+ PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
237
+ PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDivider, selector: "p-divider,[p-divider]", inputs: { color: "color", orientation: "orientation", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
238
+ PDivider = __decorate([
239
+ ProxyCmp({
240
+ inputs: inputs$w
241
+ })
242
+ ], PDivider);
243
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, decorators: [{
244
+ type: Component,
245
+ args: [{
246
+ selector: 'p-divider,[p-divider]',
247
+ changeDetection: ChangeDetectionStrategy.OnPush,
248
+ template: '<ng-content></ng-content>',
249
+ inputs: inputs$w
250
+ }]
251
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
252
+
253
+ const inputs$v = ['label', 'labelSize', 'message', 'required', 'state'];
254
+ let PFieldsetWrapper = class PFieldsetWrapper {
255
+ constructor(c, r, z) {
256
+ this.z = z;
257
+ c.detach();
258
+ this.el = r.nativeElement;
259
+ }
260
+ };
261
+ PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFieldsetWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
262
+ PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFieldsetWrapper, selector: "p-fieldset-wrapper,[p-fieldset-wrapper]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
263
+ PFieldsetWrapper = __decorate([
264
+ ProxyCmp({
265
+ inputs: inputs$v
266
+ })
267
+ ], PFieldsetWrapper);
268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFieldsetWrapper, decorators: [{
269
+ type: Component,
270
+ args: [{
271
+ selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
272
+ changeDetection: ChangeDetectionStrategy.OnPush,
273
+ template: '<ng-content></ng-content>',
274
+ inputs: inputs$v
275
+ }]
276
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
277
+
278
+ const inputs$u = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
279
+ let PFlex = class PFlex {
280
+ constructor(c, r, z) {
281
+ this.z = z;
282
+ c.detach();
283
+ this.el = r.nativeElement;
284
+ }
285
+ };
286
+ PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
287
+ PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFlex, selector: "p-flex,[p-flex]", inputs: { alignContent: "alignContent", alignItems: "alignItems", direction: "direction", inline: "inline", justifyContent: "justifyContent", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
288
+ PFlex = __decorate([
289
+ ProxyCmp({
290
+ inputs: inputs$u
291
+ })
292
+ ], PFlex);
293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlex, decorators: [{
294
+ type: Component,
295
+ args: [{
296
+ selector: 'p-flex,[p-flex]',
297
+ changeDetection: ChangeDetectionStrategy.OnPush,
298
+ template: '<ng-content></ng-content>',
299
+ inputs: inputs$u
300
+ }]
301
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
302
+
303
+ const inputs$t = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
304
+ let PFlexItem = class PFlexItem {
305
+ constructor(c, r, z) {
306
+ this.z = z;
307
+ c.detach();
308
+ this.el = r.nativeElement;
309
+ }
310
+ };
311
+ PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlexItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
312
+ PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFlexItem, selector: "p-flex-item,[p-flex-item]", inputs: { alignSelf: "alignSelf", flex: "flex", grow: "grow", offset: "offset", shrink: "shrink", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
313
+ PFlexItem = __decorate([
314
+ ProxyCmp({
315
+ inputs: inputs$t
316
+ })
317
+ ], PFlexItem);
318
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlexItem, decorators: [{
319
+ type: Component,
320
+ args: [{
321
+ selector: 'p-flex-item,[p-flex-item]',
322
+ changeDetection: ChangeDetectionStrategy.OnPush,
323
+ template: '<ng-content></ng-content>',
324
+ inputs: inputs$t
325
+ }]
326
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
327
+
328
+ const inputs$s = ['direction', 'gutter', 'wrap'];
329
+ let PGrid = class PGrid {
330
+ constructor(c, r, z) {
331
+ this.z = z;
332
+ c.detach();
333
+ this.el = r.nativeElement;
334
+ }
335
+ };
336
+ PGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
337
+ PGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PGrid, selector: "p-grid,[p-grid]", inputs: { direction: "direction", gutter: "gutter", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
338
+ PGrid = __decorate([
339
+ ProxyCmp({
340
+ inputs: inputs$s
341
+ })
342
+ ], PGrid);
343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGrid, decorators: [{
344
+ type: Component,
345
+ args: [{
346
+ selector: 'p-grid,[p-grid]',
347
+ changeDetection: ChangeDetectionStrategy.OnPush,
348
+ template: '<ng-content></ng-content>',
349
+ inputs: inputs$s
350
+ }]
351
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
352
+
353
+ const inputs$r = ['offset', 'size'];
354
+ let PGridItem = class PGridItem {
355
+ constructor(c, r, z) {
356
+ this.z = z;
357
+ c.detach();
358
+ this.el = r.nativeElement;
359
+ }
360
+ };
361
+ PGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
362
+ PGridItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PGridItem, selector: "p-grid-item,[p-grid-item]", inputs: { offset: "offset", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
363
+ PGridItem = __decorate([
364
+ ProxyCmp({
365
+ inputs: inputs$r
366
+ })
367
+ ], PGridItem);
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGridItem, decorators: [{
369
+ type: Component,
370
+ args: [{
371
+ selector: 'p-grid-item,[p-grid-item]',
372
+ changeDetection: ChangeDetectionStrategy.OnPush,
373
+ template: '<ng-content></ng-content>',
374
+ inputs: inputs$r
375
+ }]
376
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
377
+
378
+ const inputs$q = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
379
+ let PHeadline = class PHeadline {
380
+ constructor(c, r, z) {
381
+ this.z = z;
382
+ c.detach();
383
+ this.el = r.nativeElement;
384
+ }
385
+ };
386
+ PHeadline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHeadline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
387
+ PHeadline.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PHeadline, selector: "p-headline,[p-headline]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", tag: "tag", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
388
+ PHeadline = __decorate([
389
+ ProxyCmp({
390
+ inputs: inputs$q
391
+ })
392
+ ], PHeadline);
393
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHeadline, decorators: [{
394
+ type: Component,
395
+ args: [{
396
+ selector: 'p-headline,[p-headline]',
397
+ changeDetection: ChangeDetectionStrategy.OnPush,
398
+ template: '<ng-content></ng-content>',
399
+ inputs: inputs$q
400
+ }]
401
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
402
+
403
+ const inputs$p = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
404
+ let PIcon = class PIcon {
405
+ constructor(c, r, z) {
406
+ this.z = z;
407
+ c.detach();
408
+ this.el = r.nativeElement;
409
+ }
410
+ };
411
+ PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
412
+ PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PIcon, selector: "p-icon,[p-icon]", inputs: { aria: "aria", color: "color", lazy: "lazy", name: "name", size: "size", source: "source", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
413
+ PIcon = __decorate([
414
+ ProxyCmp({
415
+ inputs: inputs$p
416
+ })
417
+ ], PIcon);
418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, decorators: [{
419
+ type: Component,
420
+ args: [{
421
+ selector: 'p-icon,[p-icon]',
422
+ changeDetection: ChangeDetectionStrategy.OnPush,
423
+ template: '<ng-content></ng-content>',
424
+ inputs: inputs$p
425
+ }]
426
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
427
+
428
+ const inputs$o = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'heading', 'persistent', 'state', 'theme'];
429
+ const outputs$6 = ['action', 'dismiss'];
430
+ let PInlineNotification = class PInlineNotification {
431
+ constructor(c, r, z) {
432
+ this.z = z;
433
+ c.detach();
434
+ this.el = r.nativeElement;
435
+ proxyOutputs(this, outputs$6);
436
+ }
437
+ };
438
+ PInlineNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInlineNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
439
+ PInlineNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", heading: "heading", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
440
+ PInlineNotification = __decorate([
441
+ ProxyCmp({
442
+ inputs: inputs$o
443
+ })
444
+ ], PInlineNotification);
445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInlineNotification, decorators: [{
446
+ type: Component,
447
+ args: [{
448
+ selector: 'p-inline-notification,[p-inline-notification]',
449
+ changeDetection: ChangeDetectionStrategy.OnPush,
450
+ template: '<ng-content></ng-content>',
451
+ inputs: inputs$o,
452
+ outputs: outputs$6
453
+ }]
454
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
455
+
456
+ const inputs$n = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
457
+ let PLink = class PLink {
458
+ constructor(c, r, z) {
459
+ this.z = z;
460
+ c.detach();
461
+ this.el = r.nativeElement;
462
+ }
463
+ };
464
+ PLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
465
+ PLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLink, selector: "p-link,[p-link]", inputs: { aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
466
+ PLink = __decorate([
467
+ ProxyCmp({
468
+ inputs: inputs$n
469
+ })
470
+ ], PLink);
471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLink, decorators: [{
472
+ type: Component,
473
+ args: [{
474
+ selector: 'p-link,[p-link]',
475
+ changeDetection: ChangeDetectionStrategy.OnPush,
476
+ template: '<ng-content></ng-content>',
477
+ inputs: inputs$n
478
+ }]
479
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
480
+
481
+ const inputs$m = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'weight'];
482
+ let PLinkPure = class PLinkPure {
483
+ constructor(c, r, z) {
484
+ this.z = z;
485
+ c.detach();
486
+ this.el = r.nativeElement;
487
+ }
488
+ };
489
+ PLinkPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
490
+ PLinkPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLinkPure, 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", theme: "theme", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
491
+ PLinkPure = __decorate([
492
+ ProxyCmp({
493
+ inputs: inputs$m
494
+ })
495
+ ], PLinkPure);
496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkPure, decorators: [{
497
+ type: Component,
498
+ args: [{
499
+ selector: 'p-link-pure,[p-link-pure]',
500
+ changeDetection: ChangeDetectionStrategy.OnPush,
501
+ template: '<ng-content></ng-content>',
502
+ inputs: inputs$m
503
+ }]
504
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
505
+
506
+ const inputs$l = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
507
+ let PLinkSocial = class PLinkSocial {
508
+ constructor(c, r, z) {
509
+ this.z = z;
510
+ c.detach();
511
+ this.el = r.nativeElement;
512
+ }
513
+ };
514
+ PLinkSocial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkSocial, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
515
+ PLinkSocial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLinkSocial, selector: "p-link-social,[p-link-social]", inputs: { hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
516
+ PLinkSocial = __decorate([
517
+ ProxyCmp({
518
+ inputs: inputs$l
519
+ })
520
+ ], PLinkSocial);
521
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkSocial, decorators: [{
522
+ type: Component,
523
+ args: [{
524
+ selector: 'p-link-social,[p-link-social]',
525
+ changeDetection: ChangeDetectionStrategy.OnPush,
526
+ template: '<ng-content></ng-content>',
527
+ inputs: inputs$l
528
+ }]
529
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
530
+
531
+ const inputs$k = ['aria', 'href', 'size', 'target', 'trademark'];
532
+ let PMarque = class PMarque {
533
+ constructor(c, r, z) {
534
+ this.z = z;
535
+ c.detach();
536
+ this.el = r.nativeElement;
537
+ }
538
+ };
539
+ PMarque.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PMarque, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
540
+ PMarque.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PMarque, selector: "p-marque,[p-marque]", inputs: { aria: "aria", href: "href", size: "size", target: "target", trademark: "trademark" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
541
+ PMarque = __decorate([
542
+ ProxyCmp({
543
+ inputs: inputs$k
544
+ })
545
+ ], PMarque);
546
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PMarque, decorators: [{
547
+ type: Component,
548
+ args: [{
549
+ selector: 'p-marque,[p-marque]',
550
+ changeDetection: ChangeDetectionStrategy.OnPush,
551
+ template: '<ng-content></ng-content>',
552
+ inputs: inputs$k
553
+ }]
554
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
555
+
556
+ const inputs$j = ['aria', 'disableBackdropClick', 'disableCloseButton', 'fullscreen', 'heading', 'open'];
557
+ const outputs$5 = ['close'];
558
+ let PModal = class PModal {
559
+ constructor(c, r, z) {
560
+ this.z = z;
561
+ c.detach();
562
+ this.el = r.nativeElement;
563
+ proxyOutputs(this, outputs$5);
564
+ }
565
+ };
566
+ PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
567
+ PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModal, selector: "p-modal,[p-modal]", inputs: { aria: "aria", disableBackdropClick: "disableBackdropClick", disableCloseButton: "disableCloseButton", fullscreen: "fullscreen", heading: "heading", open: "open" }, outputs: { close: "close" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
568
+ PModal = __decorate([
569
+ ProxyCmp({
570
+ inputs: inputs$j
571
+ })
572
+ ], PModal);
573
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModal, decorators: [{
574
+ type: Component,
575
+ args: [{
576
+ selector: 'p-modal,[p-modal]',
577
+ changeDetection: ChangeDetectionStrategy.OnPush,
578
+ template: '<ng-content></ng-content>',
579
+ inputs: inputs$j,
580
+ outputs: outputs$5
581
+ }]
582
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
583
+
584
+ const inputs$i = ['activePage', 'allyLabel', 'allyLabelNext', 'allyLabelPage', 'allyLabelPrev', 'itemsPerPage', 'maxNumberOfPageLinks', 'theme', 'totalItemsCount'];
585
+ const outputs$4 = ['pageChange'];
586
+ let PPagination = class PPagination {
587
+ constructor(c, r, z) {
588
+ this.z = z;
589
+ c.detach();
590
+ this.el = r.nativeElement;
591
+ proxyOutputs(this, outputs$4);
592
+ }
593
+ };
594
+ PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
595
+ PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPagination, selector: "p-pagination,[p-pagination]", inputs: { activePage: "activePage", allyLabel: "allyLabel", allyLabelNext: "allyLabelNext", allyLabelPage: "allyLabelPage", allyLabelPrev: "allyLabelPrev", itemsPerPage: "itemsPerPage", maxNumberOfPageLinks: "maxNumberOfPageLinks", theme: "theme", totalItemsCount: "totalItemsCount" }, outputs: { pageChange: "pageChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
596
+ PPagination = __decorate([
597
+ ProxyCmp({
598
+ inputs: inputs$i
599
+ })
600
+ ], PPagination);
601
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, decorators: [{
602
+ type: Component,
603
+ args: [{
604
+ selector: 'p-pagination,[p-pagination]',
605
+ changeDetection: ChangeDetectionStrategy.OnPush,
606
+ template: '<ng-content></ng-content>',
607
+ inputs: inputs$i,
608
+ outputs: outputs$4
609
+ }]
610
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
611
+
612
+ const inputs$h = ['aria', 'description', 'direction'];
613
+ let PPopover = class PPopover {
614
+ constructor(c, r, z) {
615
+ this.z = z;
616
+ c.detach();
617
+ this.el = r.nativeElement;
618
+ }
619
+ };
620
+ PPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
621
+ PPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPopover, selector: "p-popover,[p-popover]", inputs: { aria: "aria", description: "description", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
622
+ PPopover = __decorate([
623
+ ProxyCmp({
624
+ inputs: inputs$h
625
+ })
626
+ ], PPopover);
627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPopover, decorators: [{
628
+ type: Component,
629
+ args: [{
630
+ selector: 'p-popover,[p-popover]',
631
+ changeDetection: ChangeDetectionStrategy.OnPush,
632
+ template: '<ng-content></ng-content>',
633
+ inputs: inputs$h
634
+ }]
635
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
636
+
637
+ const inputs$g = ['hideLabel', 'label', 'message', 'state'];
638
+ let PRadioButtonWrapper = class PRadioButtonWrapper {
639
+ constructor(c, r, z) {
640
+ this.z = z;
641
+ c.detach();
642
+ this.el = r.nativeElement;
643
+ }
644
+ };
645
+ PRadioButtonWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PRadioButtonWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
646
+ PRadioButtonWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PRadioButtonWrapper, selector: "p-radio-button-wrapper,[p-radio-button-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
647
+ PRadioButtonWrapper = __decorate([
648
+ ProxyCmp({
649
+ inputs: inputs$g
650
+ })
651
+ ], PRadioButtonWrapper);
652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PRadioButtonWrapper, decorators: [{
653
+ type: Component,
654
+ args: [{
655
+ selector: 'p-radio-button-wrapper,[p-radio-button-wrapper]',
656
+ changeDetection: ChangeDetectionStrategy.OnPush,
657
+ template: '<ng-content></ng-content>',
658
+ inputs: inputs$g
659
+ }]
660
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
661
+
662
+ const inputs$f = ['description', 'dropdownDirection', 'filter', 'hideLabel', 'label', 'message', 'native', 'state', 'theme'];
663
+ let PSelectWrapper = class PSelectWrapper {
664
+ constructor(c, r, z) {
665
+ this.z = z;
666
+ c.detach();
667
+ this.el = r.nativeElement;
668
+ }
669
+ };
670
+ PSelectWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSelectWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
671
+ PSelectWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PSelectWrapper, 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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
672
+ PSelectWrapper = __decorate([
673
+ ProxyCmp({
674
+ inputs: inputs$f
675
+ })
676
+ ], PSelectWrapper);
677
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSelectWrapper, decorators: [{
678
+ type: Component,
679
+ args: [{
680
+ selector: 'p-select-wrapper,[p-select-wrapper]',
681
+ changeDetection: ChangeDetectionStrategy.OnPush,
682
+ template: '<ng-content></ng-content>',
683
+ inputs: inputs$f
684
+ }]
685
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
686
+
687
+ const inputs$e = ['aria', 'size', 'theme'];
688
+ let PSpinner = class PSpinner {
689
+ constructor(c, r, z) {
690
+ this.z = z;
691
+ c.detach();
692
+ this.el = r.nativeElement;
693
+ }
694
+ };
695
+ PSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
696
+ PSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PSpinner, selector: "p-spinner,[p-spinner]", inputs: { aria: "aria", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
697
+ PSpinner = __decorate([
698
+ ProxyCmp({
699
+ inputs: inputs$e
700
+ })
701
+ ], PSpinner);
702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSpinner, decorators: [{
703
+ type: Component,
704
+ args: [{
705
+ selector: 'p-spinner,[p-spinner]',
706
+ changeDetection: ChangeDetectionStrategy.OnPush,
707
+ template: '<ng-content></ng-content>',
708
+ inputs: inputs$e
709
+ }]
710
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
711
+
712
+ const inputs$d = ['alignLabel', 'checked', 'disabled', 'hideLabel', 'loading', 'stretch', 'tabbable', 'theme'];
713
+ const outputs$3 = ['switchChange'];
714
+ let PSwitch = class PSwitch {
715
+ constructor(c, r, z) {
716
+ this.z = z;
717
+ c.detach();
718
+ this.el = r.nativeElement;
719
+ proxyOutputs(this, outputs$3);
720
+ }
721
+ };
722
+ PSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
723
+ PSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PSwitch, selector: "p-switch,[p-switch]", inputs: { alignLabel: "alignLabel", checked: "checked", disabled: "disabled", hideLabel: "hideLabel", loading: "loading", stretch: "stretch", tabbable: "tabbable", theme: "theme" }, outputs: { switchChange: "switchChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
724
+ PSwitch = __decorate([
725
+ ProxyCmp({
726
+ inputs: inputs$d
727
+ })
728
+ ], PSwitch);
729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSwitch, decorators: [{
730
+ type: Component,
731
+ args: [{
732
+ selector: 'p-switch,[p-switch]',
733
+ changeDetection: ChangeDetectionStrategy.OnPush,
734
+ template: '<ng-content></ng-content>',
735
+ inputs: inputs$d,
736
+ outputs: outputs$3
737
+ }]
738
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
739
+
740
+ const inputs$c = ['caption'];
741
+ const outputs$2 = ['sortingChange'];
742
+ let PTable = class PTable {
743
+ constructor(c, r, z) {
744
+ this.z = z;
745
+ c.detach();
746
+ this.el = r.nativeElement;
747
+ proxyOutputs(this, outputs$2);
748
+ }
749
+ };
750
+ PTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
751
+ PTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTable, selector: "p-table,[p-table]", inputs: { caption: "caption" }, outputs: { sortingChange: "sortingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
752
+ PTable = __decorate([
753
+ ProxyCmp({
754
+ inputs: inputs$c
755
+ })
756
+ ], PTable);
757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTable, decorators: [{
758
+ type: Component,
759
+ args: [{
760
+ selector: 'p-table,[p-table]',
761
+ changeDetection: ChangeDetectionStrategy.OnPush,
762
+ template: '<ng-content></ng-content>',
763
+ inputs: inputs$c,
764
+ outputs: outputs$2
765
+ }]
766
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
767
+
768
+ let PTableBody = class PTableBody {
769
+ constructor(c, r, z) {
770
+ this.z = z;
771
+ c.detach();
772
+ this.el = r.nativeElement;
773
+ }
774
+ };
775
+ PTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
776
+ PTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTableBody, selector: "p-table-body,[p-table-body]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
777
+ PTableBody = __decorate([
778
+ ProxyCmp({})
779
+ ], PTableBody);
780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableBody, decorators: [{
781
+ type: Component,
782
+ args: [{
783
+ selector: 'p-table-body,[p-table-body]',
784
+ changeDetection: ChangeDetectionStrategy.OnPush,
785
+ template: '<ng-content></ng-content>'
786
+ }]
787
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
788
+
789
+ const inputs$b = ['multiline'];
790
+ let PTableCell = class PTableCell {
791
+ constructor(c, r, z) {
792
+ this.z = z;
793
+ c.detach();
794
+ this.el = r.nativeElement;
795
+ }
796
+ };
797
+ PTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
798
+ PTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTableCell, selector: "p-table-cell,[p-table-cell]", inputs: { multiline: "multiline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
799
+ PTableCell = __decorate([
800
+ ProxyCmp({
801
+ inputs: inputs$b
802
+ })
803
+ ], PTableCell);
804
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableCell, decorators: [{
805
+ type: Component,
806
+ args: [{
807
+ selector: 'p-table-cell,[p-table-cell]',
808
+ changeDetection: ChangeDetectionStrategy.OnPush,
809
+ template: '<ng-content></ng-content>',
810
+ inputs: inputs$b
811
+ }]
812
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
813
+
814
+ let PTableHead = class PTableHead {
815
+ constructor(c, r, z) {
816
+ this.z = z;
817
+ c.detach();
818
+ this.el = r.nativeElement;
819
+ }
820
+ };
821
+ PTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
822
+ PTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTableHead, selector: "p-table-head,[p-table-head]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
823
+ PTableHead = __decorate([
824
+ ProxyCmp({})
825
+ ], PTableHead);
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableHead, decorators: [{
827
+ type: Component,
828
+ args: [{
829
+ selector: 'p-table-head,[p-table-head]',
830
+ changeDetection: ChangeDetectionStrategy.OnPush,
831
+ template: '<ng-content></ng-content>'
832
+ }]
833
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
834
+
835
+ const inputs$a = ['hideLabel', 'multiline', 'sort'];
836
+ let PTableHeadCell = class PTableHeadCell {
837
+ constructor(c, r, z) {
838
+ this.z = z;
839
+ c.detach();
840
+ this.el = r.nativeElement;
841
+ }
842
+ };
843
+ PTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableHeadCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
844
+ PTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTableHeadCell, selector: "p-table-head-cell,[p-table-head-cell]", inputs: { hideLabel: "hideLabel", multiline: "multiline", sort: "sort" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
845
+ PTableHeadCell = __decorate([
846
+ ProxyCmp({
847
+ inputs: inputs$a
848
+ })
849
+ ], PTableHeadCell);
850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableHeadCell, decorators: [{
851
+ type: Component,
852
+ args: [{
853
+ selector: 'p-table-head-cell,[p-table-head-cell]',
854
+ changeDetection: ChangeDetectionStrategy.OnPush,
855
+ template: '<ng-content></ng-content>',
856
+ inputs: inputs$a
857
+ }]
858
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
859
+
860
+ let PTableHeadRow = class PTableHeadRow {
861
+ constructor(c, r, z) {
862
+ this.z = z;
863
+ c.detach();
864
+ this.el = r.nativeElement;
865
+ }
866
+ };
867
+ PTableHeadRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableHeadRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
868
+ PTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTableHeadRow, selector: "p-table-head-row,[p-table-head-row]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
869
+ PTableHeadRow = __decorate([
870
+ ProxyCmp({})
871
+ ], PTableHeadRow);
872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableHeadRow, decorators: [{
873
+ type: Component,
874
+ args: [{
875
+ selector: 'p-table-head-row,[p-table-head-row]',
876
+ changeDetection: ChangeDetectionStrategy.OnPush,
877
+ template: '<ng-content></ng-content>'
878
+ }]
879
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
880
+
881
+ let PTableRow = class PTableRow {
882
+ constructor(c, r, z) {
883
+ this.z = z;
884
+ c.detach();
885
+ this.el = r.nativeElement;
886
+ }
887
+ };
888
+ PTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
889
+ PTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTableRow, selector: "p-table-row,[p-table-row]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
890
+ PTableRow = __decorate([
891
+ ProxyCmp({})
892
+ ], PTableRow);
893
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTableRow, decorators: [{
894
+ type: Component,
895
+ args: [{
896
+ selector: 'p-table-row,[p-table-row]',
897
+ changeDetection: ChangeDetectionStrategy.OnPush,
898
+ template: '<ng-content></ng-content>'
899
+ }]
900
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
901
+
902
+ const inputs$9 = ['activeTabIndex', 'gradientColorScheme', 'size', 'theme', 'weight'];
903
+ const outputs$1 = ['tabChange'];
904
+ let PTabs = class PTabs {
905
+ constructor(c, r, z) {
906
+ this.z = z;
907
+ c.detach();
908
+ this.el = r.nativeElement;
909
+ proxyOutputs(this, outputs$1);
910
+ }
911
+ };
912
+ PTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
913
+ PTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTabs, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex", gradientColorScheme: "gradientColorScheme", size: "size", theme: "theme", weight: "weight" }, outputs: { tabChange: "tabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
914
+ PTabs = __decorate([
915
+ ProxyCmp({
916
+ inputs: inputs$9
917
+ })
918
+ ], PTabs);
919
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTabs, decorators: [{
920
+ type: Component,
921
+ args: [{
922
+ selector: 'p-tabs,[p-tabs]',
923
+ changeDetection: ChangeDetectionStrategy.OnPush,
924
+ template: '<ng-content></ng-content>',
925
+ inputs: inputs$9,
926
+ outputs: outputs$1
927
+ }]
928
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
929
+
930
+ const inputs$8 = ['activeTabIndex', 'gradientColorScheme', 'size', 'theme', 'weight'];
931
+ const outputs = ['tabChange'];
932
+ let PTabsBar = class PTabsBar {
933
+ constructor(c, r, z) {
934
+ this.z = z;
935
+ c.detach();
936
+ this.el = r.nativeElement;
937
+ proxyOutputs(this, outputs);
938
+ }
939
+ };
940
+ PTabsBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTabsBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
941
+ PTabsBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTabsBar, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex", gradientColorScheme: "gradientColorScheme", size: "size", theme: "theme", weight: "weight" }, outputs: { tabChange: "tabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
942
+ PTabsBar = __decorate([
943
+ ProxyCmp({
944
+ inputs: inputs$8
945
+ })
946
+ ], PTabsBar);
947
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTabsBar, decorators: [{
948
+ type: Component,
949
+ args: [{
950
+ selector: 'p-tabs-bar,[p-tabs-bar]',
951
+ changeDetection: ChangeDetectionStrategy.OnPush,
952
+ template: '<ng-content></ng-content>',
953
+ inputs: inputs$8,
954
+ outputs
955
+ }]
956
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
957
+
958
+ const inputs$7 = ['label'];
959
+ let PTabsItem = class PTabsItem {
960
+ constructor(c, r, z) {
961
+ this.z = z;
962
+ c.detach();
963
+ this.el = r.nativeElement;
964
+ }
965
+ };
966
+ PTabsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTabsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
967
+ PTabsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTabsItem, selector: "p-tabs-item,[p-tabs-item]", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
968
+ PTabsItem = __decorate([
969
+ ProxyCmp({
970
+ inputs: inputs$7
971
+ })
972
+ ], PTabsItem);
973
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTabsItem, decorators: [{
974
+ type: Component,
975
+ args: [{
976
+ selector: 'p-tabs-item,[p-tabs-item]',
977
+ changeDetection: ChangeDetectionStrategy.OnPush,
978
+ template: '<ng-content></ng-content>',
979
+ inputs: inputs$7
980
+ }]
981
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
982
+
983
+ const inputs$6 = ['color', 'icon', 'iconSource', 'theme'];
984
+ let PTag = class PTag {
985
+ constructor(c, r, z) {
986
+ this.z = z;
987
+ c.detach();
988
+ this.el = r.nativeElement;
989
+ }
990
+ };
991
+ PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
992
+ PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTag, selector: "p-tag,[p-tag]", inputs: { color: "color", icon: "icon", iconSource: "iconSource", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
993
+ PTag = __decorate([
994
+ ProxyCmp({
995
+ inputs: inputs$6
996
+ })
997
+ ], PTag);
998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTag, decorators: [{
999
+ type: Component,
1000
+ args: [{
1001
+ selector: 'p-tag,[p-tag]',
1002
+ changeDetection: ChangeDetectionStrategy.OnPush,
1003
+ template: '<ng-content></ng-content>',
1004
+ inputs: inputs$6
1005
+ }]
1006
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1007
+
1008
+ const inputs$5 = ['aria', 'color', 'label'];
1009
+ let PTagDismissible = class PTagDismissible {
1010
+ constructor(c, r, z) {
1011
+ this.z = z;
1012
+ c.detach();
1013
+ this.el = r.nativeElement;
1014
+ }
1015
+ };
1016
+ PTagDismissible.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTagDismissible, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1017
+ PTagDismissible.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTagDismissible, selector: "p-tag-dismissible,[p-tag-dismissible]", inputs: { aria: "aria", color: "color", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1018
+ PTagDismissible = __decorate([
1019
+ ProxyCmp({
1020
+ inputs: inputs$5
1021
+ })
1022
+ ], PTagDismissible);
1023
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTagDismissible, decorators: [{
1024
+ type: Component,
1025
+ args: [{
1026
+ selector: 'p-tag-dismissible,[p-tag-dismissible]',
1027
+ changeDetection: ChangeDetectionStrategy.OnPush,
1028
+ template: '<ng-content></ng-content>',
1029
+ inputs: inputs$5
1030
+ }]
1031
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1032
+
1033
+ const inputs$4 = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme', 'weight'];
1034
+ let PText = class PText {
1035
+ constructor(c, r, z) {
1036
+ this.z = z;
1037
+ c.detach();
1038
+ this.el = r.nativeElement;
1039
+ }
1040
+ };
1041
+ PText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1042
+ PText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PText, selector: "p-text,[p-text]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag", theme: "theme", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1043
+ PText = __decorate([
1044
+ ProxyCmp({
1045
+ inputs: inputs$4
1046
+ })
1047
+ ], PText);
1048
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PText, decorators: [{
1049
+ type: Component,
1050
+ args: [{
1051
+ selector: 'p-text,[p-text]',
1052
+ changeDetection: ChangeDetectionStrategy.OnPush,
1053
+ template: '<ng-content></ng-content>',
1054
+ inputs: inputs$4
1055
+ }]
1056
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1057
+
1058
+ const inputs$3 = ['description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'state', 'unit', 'unitPosition'];
1059
+ let PTextFieldWrapper = class PTextFieldWrapper {
1060
+ constructor(c, r, z) {
1061
+ this.z = z;
1062
+ c.detach();
1063
+ this.el = r.nativeElement;
1064
+ }
1065
+ };
1066
+ PTextFieldWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextFieldWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1067
+ PTextFieldWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTextFieldWrapper, selector: "p-text-field-wrapper,[p-text-field-wrapper]", inputs: { description: "description", hideLabel: "hideLabel", label: "label", message: "message", showCharacterCount: "showCharacterCount", state: "state", unit: "unit", unitPosition: "unitPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1068
+ PTextFieldWrapper = __decorate([
1069
+ ProxyCmp({
1070
+ inputs: inputs$3
1071
+ })
1072
+ ], PTextFieldWrapper);
1073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextFieldWrapper, decorators: [{
1074
+ type: Component,
1075
+ args: [{
1076
+ selector: 'p-text-field-wrapper,[p-text-field-wrapper]',
1077
+ changeDetection: ChangeDetectionStrategy.OnPush,
1078
+ template: '<ng-content></ng-content>',
1079
+ inputs: inputs$3
1080
+ }]
1081
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1082
+
1083
+ const inputs$2 = ['listType', 'orderType', 'theme'];
1084
+ let PTextList = class PTextList {
1085
+ constructor(c, r, z) {
1086
+ this.z = z;
1087
+ c.detach();
1088
+ this.el = r.nativeElement;
1089
+ }
1090
+ };
1091
+ PTextList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1092
+ PTextList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTextList, selector: "p-text-list,[p-text-list]", inputs: { listType: "listType", orderType: "orderType", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1093
+ PTextList = __decorate([
1094
+ ProxyCmp({
1095
+ inputs: inputs$2
1096
+ })
1097
+ ], PTextList);
1098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextList, decorators: [{
1099
+ type: Component,
1100
+ args: [{
1101
+ selector: 'p-text-list,[p-text-list]',
1102
+ changeDetection: ChangeDetectionStrategy.OnPush,
1103
+ template: '<ng-content></ng-content>',
1104
+ inputs: inputs$2
1105
+ }]
1106
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1107
+
1108
+ let PTextListItem = class PTextListItem {
1109
+ constructor(c, r, z) {
1110
+ this.z = z;
1111
+ c.detach();
1112
+ this.el = r.nativeElement;
1113
+ }
1114
+ };
1115
+ PTextListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1116
+ PTextListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTextListItem, selector: "p-text-list-item,[p-text-list-item]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1117
+ PTextListItem = __decorate([
1118
+ ProxyCmp({})
1119
+ ], PTextListItem);
1120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextListItem, decorators: [{
1121
+ type: Component,
1122
+ args: [{
1123
+ selector: 'p-text-list-item,[p-text-list-item]',
1124
+ changeDetection: ChangeDetectionStrategy.OnPush,
1125
+ template: '<ng-content></ng-content>'
1126
+ }]
1127
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1128
+
1129
+ const inputs$1 = ['description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'state'];
1130
+ let PTextareaWrapper = class PTextareaWrapper {
1131
+ constructor(c, r, z) {
1132
+ this.z = z;
1133
+ c.detach();
1134
+ this.el = r.nativeElement;
1135
+ }
1136
+ };
1137
+ PTextareaWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextareaWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1138
+ PTextareaWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTextareaWrapper, selector: "p-textarea-wrapper,[p-textarea-wrapper]", inputs: { description: "description", hideLabel: "hideLabel", label: "label", message: "message", showCharacterCount: "showCharacterCount", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1139
+ PTextareaWrapper = __decorate([
1140
+ ProxyCmp({
1141
+ inputs: inputs$1
1142
+ })
1143
+ ], PTextareaWrapper);
1144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTextareaWrapper, decorators: [{
1145
+ type: Component,
1146
+ args: [{
1147
+ selector: 'p-textarea-wrapper,[p-textarea-wrapper]',
1148
+ changeDetection: ChangeDetectionStrategy.OnPush,
1149
+ template: '<ng-content></ng-content>',
1150
+ inputs: inputs$1
1151
+ }]
1152
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1153
+
1154
+ const inputs = ['theme'];
1155
+ let PToast = class PToast {
1156
+ constructor(c, r, z) {
1157
+ this.z = z;
1158
+ c.detach();
1159
+ this.el = r.nativeElement;
1160
+ }
1161
+ };
1162
+ PToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1163
+ PToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PToast, selector: "p-toast,[p-toast]", inputs: { theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1164
+ PToast = __decorate([
1165
+ ProxyCmp({
1166
+ inputs
1167
+ })
1168
+ ], PToast);
1169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PToast, decorators: [{
1170
+ type: Component,
1171
+ args: [{
1172
+ selector: 'p-toast,[p-toast]',
1173
+ changeDetection: ChangeDetectionStrategy.OnPush,
1174
+ template: '<ng-content></ng-content>',
1175
+ inputs
1176
+ }]
1177
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1178
+
1179
+ const DECLARATIONS = [
1180
+ PAccordion,
1181
+ PBanner,
1182
+ PButton,
1183
+ PButtonGroup,
1184
+ PButtonPure,
1185
+ PCheckboxWrapper,
1186
+ PContentWrapper,
1187
+ PDivider,
1188
+ PFieldsetWrapper,
1189
+ PFlex,
1190
+ PFlexItem,
1191
+ PGrid,
1192
+ PGridItem,
1193
+ PHeadline,
1194
+ PIcon,
1195
+ PInlineNotification,
1196
+ PLink,
1197
+ PLinkPure,
1198
+ PLinkSocial,
1199
+ PMarque,
1200
+ PModal,
1201
+ PPagination,
1202
+ PPopover,
1203
+ PRadioButtonWrapper,
1204
+ PSelectWrapper,
1205
+ PSpinner,
1206
+ PSwitch,
1207
+ PTable,
1208
+ PTableBody,
1209
+ PTableCell,
1210
+ PTableHead,
1211
+ PTableHeadCell,
1212
+ PTableHeadRow,
1213
+ PTableRow,
1214
+ PTabs,
1215
+ PTabsBar,
1216
+ PTabsItem,
1217
+ PTag,
1218
+ PTagDismissible,
1219
+ PText,
1220
+ PTextFieldWrapper,
1221
+ PTextList,
1222
+ PTextListItem,
1223
+ PTextareaWrapper,
1224
+ PToast
1225
+ ];
1226
+
1227
+ const usesSkeletons = () => typeof window !== 'undefined' && !!document.querySelector('style[uses-skeleton]');
1228
+ const USES_SKELETONS = new InjectionToken('usesSkeletons');
1229
+
1230
+ class DefaultConfig {
1231
+ constructor() {
1232
+ this.prefix = '';
1233
+ }
1234
+ }
1235
+ class PorscheDesignSystemModule {
1236
+ constructor(configParam) {
1237
+ const configs = (configParam ?? [new DefaultConfig()]);
1238
+ configs.forEach(({ prefix }) => load({ prefix }));
1239
+ }
1240
+ static load(config) {
1241
+ return {
1242
+ ngModule: PorscheDesignSystemModule,
1243
+ providers: [
1244
+ {
1245
+ provide: DefaultConfig,
1246
+ multi: true,
1247
+ useValue: config,
1248
+ },
1249
+ ],
1250
+ };
1251
+ }
1252
+ }
1253
+ PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
1254
+ PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PSelectWrapper, PSpinner, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PSelectWrapper, PSpinner, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast] });
1255
+ PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, providers: [{ provide: USES_SKELETONS, useValue: usesSkeletons() }] });
1256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
1257
+ type: NgModule,
1258
+ args: [{
1259
+ declarations: DECLARATIONS,
1260
+ exports: DECLARATIONS,
1261
+ providers: [{ provide: USES_SKELETONS, useValue: usesSkeletons() }],
1262
+ }]
1263
+ }], ctorParameters: function () { return [{ type: DefaultConfig, decorators: [{
1264
+ type: Optional
1265
+ }] }]; } });
1266
+
1267
+ class ToastManager {
1268
+ addMessage(message) {
1269
+ const toast = document.querySelector('p-toast,[p-toast]');
1270
+ customElements.whenDefined(toast.tagName.toLowerCase()).then(() => toast.addMessage(message));
1271
+ }
1272
+ }
1273
+ ToastManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ToastManager, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1274
+ ToastManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ToastManager, providedIn: 'root' });
1275
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ToastManager, decorators: [{
1276
+ type: Injectable,
1277
+ args: [{
1278
+ providedIn: 'root',
1279
+ }]
1280
+ }] });
1281
+
1282
+ /**
1283
+ * Generated bundle index. Do not edit.
1284
+ */
1285
+
1286
+ export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PSelectWrapper, PSpinner, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PorscheDesignSystemModule, ToastManager };
1287
+ //# sourceMappingURL=porsche-design-system-components-angular.mjs.map