@porsche-design-system/components-angular 3.28.0 → 3.29.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.
- package/CHANGELOG.md +13 -0
- package/esm/lib/components/barrel.d.ts +2 -0
- package/esm/lib/components/input-number.wrapper.d.ts +2 -1
- package/esm/lib/components/input-password.wrapper.d.ts +2 -1
- package/esm/lib/components/input-search.wrapper.d.ts +29 -0
- package/esm/lib/components/input-text.wrapper.d.ts +31 -0
- package/esm/lib/components/select.wrapper.d.ts +2 -1
- package/esm/lib/types.d.ts +20 -5
- package/esm/porsche-design-system.module.d.ts +50 -48
- package/fesm2022/porsche-design-system-components-angular.mjs +87 -8
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
## [Unreleased]
|
|
16
16
|
|
|
17
|
+
## [3.29.0-rc.0] - 2025-06-27
|
|
18
|
+
|
|
19
|
+
#### Added
|
|
20
|
+
|
|
21
|
+
- `Input Search`: ([#3874](https://github.com/porsche-design-system/porsche-design-system/pull/3874))
|
|
22
|
+
- `Input Number`, `Input Password`: added loading state
|
|
23
|
+
([#3874](https://github.com/porsche-design-system/porsche-design-system/pull/3874))
|
|
24
|
+
- `Input Text`: ([#3897](https://github.com/porsche-design-system/porsche-design-system/pull/3897))
|
|
25
|
+
- `Select`: `filter` prop to enable an input in the dropdown to filter options
|
|
26
|
+
([#3893](https://github.com/porsche-design-system/porsche-design-system/pull/3893))
|
|
27
|
+
- `Flyout`: expose `--ref-p-flyout-pt` and `--ref-p-flyout-px` read only CSS variable
|
|
28
|
+
([#3902](https://github.com/porsche-design-system/porsche-design-system/pull/3902))
|
|
29
|
+
|
|
17
30
|
## [3.28.0] - 2025-06-02
|
|
18
31
|
|
|
19
32
|
#### Added
|
|
@@ -30,6 +30,8 @@ export * from './icon.wrapper';
|
|
|
30
30
|
export * from './inline-notification.wrapper';
|
|
31
31
|
export * from './input-number.wrapper';
|
|
32
32
|
export * from './input-password.wrapper';
|
|
33
|
+
export * from './input-search.wrapper';
|
|
34
|
+
export * from './input-text.wrapper';
|
|
33
35
|
export * from './link.wrapper';
|
|
34
36
|
export * from './link-pure.wrapper';
|
|
35
37
|
export * from './link-social.wrapper';
|
|
@@ -11,6 +11,7 @@ export declare class PInputNumber extends BaseComponentWithTheme {
|
|
|
11
11
|
form?: string;
|
|
12
12
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
13
13
|
label?: string;
|
|
14
|
+
loading?: boolean;
|
|
14
15
|
max?: number;
|
|
15
16
|
message?: string;
|
|
16
17
|
min?: number;
|
|
@@ -26,5 +27,5 @@ export declare class PInputNumber extends BaseComponentWithTheme {
|
|
|
26
27
|
change: EventEmitter<CustomEvent<Event>>;
|
|
27
28
|
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<PInputNumber, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
30
31
|
}
|
|
@@ -10,6 +10,7 @@ export declare class PInputPassword extends BaseComponentWithTheme {
|
|
|
10
10
|
form?: string;
|
|
11
11
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
12
12
|
label?: string;
|
|
13
|
+
loading?: boolean;
|
|
13
14
|
maxLength?: number;
|
|
14
15
|
message?: string;
|
|
15
16
|
minLength?: number;
|
|
@@ -25,5 +26,5 @@ export declare class PInputPassword extends BaseComponentWithTheme {
|
|
|
25
26
|
change: EventEmitter<CustomEvent<Event>>;
|
|
26
27
|
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputPassword, "p-input-password,[p-input-password]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputPassword, "p-input-password,[p-input-password]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
29
30
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BaseComponentWithTheme } from '../../utils';
|
|
3
|
+
import type { InputSearchAutoComplete, BreakpointCustomizable, InputSearchState, Theme } from '../types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PInputSearch extends BaseComponentWithTheme {
|
|
6
|
+
autoComplete?: InputSearchAutoComplete;
|
|
7
|
+
clear?: boolean;
|
|
8
|
+
compact?: boolean;
|
|
9
|
+
description?: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
form?: string;
|
|
12
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
13
|
+
indicator?: boolean;
|
|
14
|
+
label?: string;
|
|
15
|
+
loading?: boolean;
|
|
16
|
+
message?: string;
|
|
17
|
+
name: string;
|
|
18
|
+
placeholder?: string;
|
|
19
|
+
readOnly?: boolean;
|
|
20
|
+
required?: boolean;
|
|
21
|
+
state?: InputSearchState;
|
|
22
|
+
theme?: Theme;
|
|
23
|
+
value?: string;
|
|
24
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
25
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
26
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputSearch, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputSearch, "p-input-search,[p-input-search]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "clear": { "alias": "clear"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BaseComponentWithTheme } from '../../utils';
|
|
3
|
+
import type { InputTextAutoComplete, BreakpointCustomizable, InputTextState, Theme } from '../types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PInputText extends BaseComponentWithTheme {
|
|
6
|
+
autoComplete?: InputTextAutoComplete;
|
|
7
|
+
compact?: boolean;
|
|
8
|
+
counter?: boolean;
|
|
9
|
+
description?: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
form?: string;
|
|
12
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
13
|
+
label?: string;
|
|
14
|
+
loading?: boolean;
|
|
15
|
+
maxLength?: number;
|
|
16
|
+
message?: string;
|
|
17
|
+
minLength?: number;
|
|
18
|
+
name: string;
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
readOnly?: boolean;
|
|
21
|
+
required?: boolean;
|
|
22
|
+
spellCheck?: boolean;
|
|
23
|
+
state?: InputTextState;
|
|
24
|
+
theme?: Theme;
|
|
25
|
+
value?: string;
|
|
26
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
27
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
28
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputText, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputText, "p-input-text,[p-input-text]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
31
|
+
}
|
|
@@ -7,6 +7,7 @@ export declare class PSelect extends BaseComponentWithTheme {
|
|
|
7
7
|
description?: string;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
dropdownDirection?: SelectDropdownDirection;
|
|
10
|
+
filter?: boolean;
|
|
10
11
|
form?: string;
|
|
11
12
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
12
13
|
label?: string;
|
|
@@ -18,5 +19,5 @@ export declare class PSelect extends BaseComponentWithTheme {
|
|
|
18
19
|
value?: string;
|
|
19
20
|
update: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select,[p-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select,[p-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
22
23
|
}
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -1091,8 +1091,7 @@ export type IconColor = (typeof ICON_COLORS)[number];
|
|
|
1091
1091
|
export type InputNumberState = FormState;
|
|
1092
1092
|
declare const INPUT_NUMBER_AUTO_COMPLETE: readonly [
|
|
1093
1093
|
"off",
|
|
1094
|
-
"on"
|
|
1095
|
-
""
|
|
1094
|
+
"on"
|
|
1096
1095
|
];
|
|
1097
1096
|
export type InputNumberAutoComplete = (typeof INPUT_NUMBER_AUTO_COMPLETE)[number];
|
|
1098
1097
|
export type InputNumberChangeEventDetail = Event;
|
|
@@ -1102,7 +1101,6 @@ export type InputPasswordState = FormState;
|
|
|
1102
1101
|
declare const INPUT_PASSWORD_AUTO_COMPLETE: readonly [
|
|
1103
1102
|
"off",
|
|
1104
1103
|
"on",
|
|
1105
|
-
"",
|
|
1106
1104
|
"current-password",
|
|
1107
1105
|
"new-password"
|
|
1108
1106
|
];
|
|
@@ -1110,6 +1108,24 @@ export type InputPasswordAutoComplete = (typeof INPUT_PASSWORD_AUTO_COMPLETE)[nu
|
|
|
1110
1108
|
export type InputPasswordChangeEventDetail = Event;
|
|
1111
1109
|
export type InputPasswordBlurEventDetail = Event;
|
|
1112
1110
|
export type InputPasswordInputEventDetail = InputEvent;
|
|
1111
|
+
export type InputSearchState = FormState;
|
|
1112
|
+
declare const INPUT_SEARCH_AUTO_COMPLETE: readonly [
|
|
1113
|
+
"off",
|
|
1114
|
+
"on"
|
|
1115
|
+
];
|
|
1116
|
+
export type InputSearchAutoComplete = (typeof INPUT_SEARCH_AUTO_COMPLETE)[number];
|
|
1117
|
+
export type InputSearchChangeEventDetail = Event;
|
|
1118
|
+
export type InputSearchBlurEventDetail = Event;
|
|
1119
|
+
export type InputSearchInputEventDetail = InputEvent;
|
|
1120
|
+
export type InputTextState = FormState;
|
|
1121
|
+
declare const INPUT_TEXT_AUTO_COMPLETE: readonly [
|
|
1122
|
+
"off",
|
|
1123
|
+
"on"
|
|
1124
|
+
];
|
|
1125
|
+
export type InputTextAutoComplete = (typeof INPUT_TEXT_AUTO_COMPLETE)[number];
|
|
1126
|
+
export type InputTextChangeEventDetail = Event;
|
|
1127
|
+
export type InputTextBlurEventDetail = Event;
|
|
1128
|
+
export type InputTextInputEventDetail = InputEvent;
|
|
1113
1129
|
export type LinkIcon = LinkButtonIconName;
|
|
1114
1130
|
export type LinkPureIcon = LinkButtonIconName;
|
|
1115
1131
|
export type LinkPureAriaAttribute = LinkAriaAttribute;
|
|
@@ -1500,8 +1516,7 @@ export type TextListType = (typeof TEXT_LIST_TYPES)[number];
|
|
|
1500
1516
|
export type TextareaState = FormState;
|
|
1501
1517
|
declare const AUTO_COMPLETE: readonly [
|
|
1502
1518
|
"off",
|
|
1503
|
-
"on"
|
|
1504
|
-
""
|
|
1519
|
+
"on"
|
|
1505
1520
|
];
|
|
1506
1521
|
export type TextareaAutoComplete = (typeof AUTO_COMPLETE)[number];
|
|
1507
1522
|
declare const TEXTAREA_WRAPS: readonly [
|
|
@@ -31,53 +31,55 @@ import * as i27 from "./lib/components/icon.wrapper";
|
|
|
31
31
|
import * as i28 from "./lib/components/inline-notification.wrapper";
|
|
32
32
|
import * as i29 from "./lib/components/input-number.wrapper";
|
|
33
33
|
import * as i30 from "./lib/components/input-password.wrapper";
|
|
34
|
-
import * as i31 from "./lib/components/
|
|
35
|
-
import * as i32 from "./lib/components/
|
|
36
|
-
import * as i33 from "./lib/components/link
|
|
37
|
-
import * as i34 from "./lib/components/link-
|
|
38
|
-
import * as i35 from "./lib/components/link-
|
|
39
|
-
import * as i36 from "./lib/components/link-tile
|
|
40
|
-
import * as i37 from "./lib/components/
|
|
41
|
-
import * as i38 from "./lib/components/
|
|
42
|
-
import * as i39 from "./lib/components/
|
|
43
|
-
import * as i40 from "./lib/components/
|
|
44
|
-
import * as i41 from "./lib/components/
|
|
45
|
-
import * as i42 from "./lib/components/
|
|
46
|
-
import * as i43 from "./lib/components/
|
|
47
|
-
import * as i44 from "./lib/components/
|
|
48
|
-
import * as i45 from "./lib/components/
|
|
49
|
-
import * as i46 from "./lib/components/
|
|
50
|
-
import * as i47 from "./lib/components/
|
|
51
|
-
import * as i48 from "./lib/components/
|
|
52
|
-
import * as i49 from "./lib/components/
|
|
53
|
-
import * as i50 from "./lib/components/
|
|
54
|
-
import * as i51 from "./lib/components/
|
|
55
|
-
import * as i52 from "./lib/components/select
|
|
56
|
-
import * as i53 from "./lib/components/
|
|
57
|
-
import * as i54 from "./lib/components/
|
|
58
|
-
import * as i55 from "./lib/components/
|
|
59
|
-
import * as i56 from "./lib/components/
|
|
60
|
-
import * as i57 from "./lib/components/
|
|
61
|
-
import * as i58 from "./lib/components/
|
|
62
|
-
import * as i59 from "./lib/components/
|
|
63
|
-
import * as i60 from "./lib/components/table
|
|
64
|
-
import * as i61 from "./lib/components/table-
|
|
65
|
-
import * as i62 from "./lib/components/table-
|
|
66
|
-
import * as i63 from "./lib/components/table-head
|
|
67
|
-
import * as i64 from "./lib/components/table-
|
|
68
|
-
import * as i65 from "./lib/components/
|
|
69
|
-
import * as i66 from "./lib/components/
|
|
70
|
-
import * as i67 from "./lib/components/tabs
|
|
71
|
-
import * as i68 from "./lib/components/
|
|
72
|
-
import * as i69 from "./lib/components/
|
|
73
|
-
import * as i70 from "./lib/components/
|
|
74
|
-
import * as i71 from "./lib/components/
|
|
75
|
-
import * as i72 from "./lib/components/text
|
|
76
|
-
import * as i73 from "./lib/components/text-
|
|
77
|
-
import * as i74 from "./lib/components/
|
|
78
|
-
import * as i75 from "./lib/components/
|
|
79
|
-
import * as i76 from "./lib/components/
|
|
80
|
-
import * as i77 from "./lib/components/
|
|
34
|
+
import * as i31 from "./lib/components/input-search.wrapper";
|
|
35
|
+
import * as i32 from "./lib/components/input-text.wrapper";
|
|
36
|
+
import * as i33 from "./lib/components/link.wrapper";
|
|
37
|
+
import * as i34 from "./lib/components/link-pure.wrapper";
|
|
38
|
+
import * as i35 from "./lib/components/link-social.wrapper";
|
|
39
|
+
import * as i36 from "./lib/components/link-tile.wrapper";
|
|
40
|
+
import * as i37 from "./lib/components/link-tile-model-signature.wrapper";
|
|
41
|
+
import * as i38 from "./lib/components/link-tile-product.wrapper";
|
|
42
|
+
import * as i39 from "./lib/components/marque.wrapper";
|
|
43
|
+
import * as i40 from "./lib/components/modal.wrapper";
|
|
44
|
+
import * as i41 from "./lib/components/model-signature.wrapper";
|
|
45
|
+
import * as i42 from "./lib/components/multi-select.wrapper";
|
|
46
|
+
import * as i43 from "./lib/components/multi-select-option.wrapper";
|
|
47
|
+
import * as i44 from "./lib/components/optgroup.wrapper";
|
|
48
|
+
import * as i45 from "./lib/components/pagination.wrapper";
|
|
49
|
+
import * as i46 from "./lib/components/pin-code.wrapper";
|
|
50
|
+
import * as i47 from "./lib/components/popover.wrapper";
|
|
51
|
+
import * as i48 from "./lib/components/radio-button-wrapper.wrapper";
|
|
52
|
+
import * as i49 from "./lib/components/scroller.wrapper";
|
|
53
|
+
import * as i50 from "./lib/components/segmented-control.wrapper";
|
|
54
|
+
import * as i51 from "./lib/components/segmented-control-item.wrapper";
|
|
55
|
+
import * as i52 from "./lib/components/select.wrapper";
|
|
56
|
+
import * as i53 from "./lib/components/select-option.wrapper";
|
|
57
|
+
import * as i54 from "./lib/components/select-wrapper.wrapper";
|
|
58
|
+
import * as i55 from "./lib/components/sheet.wrapper";
|
|
59
|
+
import * as i56 from "./lib/components/spinner.wrapper";
|
|
60
|
+
import * as i57 from "./lib/components/stepper-horizontal.wrapper";
|
|
61
|
+
import * as i58 from "./lib/components/stepper-horizontal-item.wrapper";
|
|
62
|
+
import * as i59 from "./lib/components/switch.wrapper";
|
|
63
|
+
import * as i60 from "./lib/components/table.wrapper";
|
|
64
|
+
import * as i61 from "./lib/components/table-body.wrapper";
|
|
65
|
+
import * as i62 from "./lib/components/table-cell.wrapper";
|
|
66
|
+
import * as i63 from "./lib/components/table-head.wrapper";
|
|
67
|
+
import * as i64 from "./lib/components/table-head-cell.wrapper";
|
|
68
|
+
import * as i65 from "./lib/components/table-head-row.wrapper";
|
|
69
|
+
import * as i66 from "./lib/components/table-row.wrapper";
|
|
70
|
+
import * as i67 from "./lib/components/tabs.wrapper";
|
|
71
|
+
import * as i68 from "./lib/components/tabs-bar.wrapper";
|
|
72
|
+
import * as i69 from "./lib/components/tabs-item.wrapper";
|
|
73
|
+
import * as i70 from "./lib/components/tag.wrapper";
|
|
74
|
+
import * as i71 from "./lib/components/tag-dismissible.wrapper";
|
|
75
|
+
import * as i72 from "./lib/components/text.wrapper";
|
|
76
|
+
import * as i73 from "./lib/components/text-field-wrapper.wrapper";
|
|
77
|
+
import * as i74 from "./lib/components/text-list.wrapper";
|
|
78
|
+
import * as i75 from "./lib/components/text-list-item.wrapper";
|
|
79
|
+
import * as i76 from "./lib/components/textarea.wrapper";
|
|
80
|
+
import * as i77 from "./lib/components/textarea-wrapper.wrapper";
|
|
81
|
+
import * as i78 from "./lib/components/toast.wrapper";
|
|
82
|
+
import * as i79 from "./lib/components/wordmark.wrapper";
|
|
81
83
|
export type PorscheDesignSystemModuleConfig = {
|
|
82
84
|
prefix?: string;
|
|
83
85
|
cdn?: 'auto' | 'cn';
|
|
@@ -92,6 +94,6 @@ export declare class PorscheDesignSystemModule {
|
|
|
92
94
|
constructor(configParam: DefaultConfig);
|
|
93
95
|
static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
|
|
94
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
|
|
95
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputNumber, typeof i30.PInputPassword, typeof i31.
|
|
97
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputNumber, typeof i30.PInputPassword, typeof i31.PInputSearch, typeof i32.PInputText, typeof i33.PLink, typeof i34.PLinkPure, typeof i35.PLinkSocial, typeof i36.PLinkTile, typeof i37.PLinkTileModelSignature, typeof i38.PLinkTileProduct, typeof i39.PMarque, typeof i40.PModal, typeof i41.PModelSignature, typeof i42.PMultiSelect, typeof i43.PMultiSelectOption, typeof i44.POptgroup, typeof i45.PPagination, typeof i46.PPinCode, typeof i47.PPopover, typeof i48.PRadioButtonWrapper, typeof i49.PScroller, typeof i50.PSegmentedControl, typeof i51.PSegmentedControlItem, typeof i52.PSelect, typeof i53.PSelectOption, typeof i54.PSelectWrapper, typeof i55.PSheet, typeof i56.PSpinner, typeof i57.PStepperHorizontal, typeof i58.PStepperHorizontalItem, typeof i59.PSwitch, typeof i60.PTable, typeof i61.PTableBody, typeof i62.PTableCell, typeof i63.PTableHead, typeof i64.PTableHeadCell, typeof i65.PTableHeadRow, typeof i66.PTableRow, typeof i67.PTabs, typeof i68.PTabsBar, typeof i69.PTabsItem, typeof i70.PTag, typeof i71.PTagDismissible, typeof i72.PText, typeof i73.PTextFieldWrapper, typeof i74.PTextList, typeof i75.PTextListItem, typeof i76.PTextarea, typeof i77.PTextareaWrapper, typeof i78.PToast, typeof i79.PWordmark], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputNumber, typeof i30.PInputPassword, typeof i31.PInputSearch, typeof i32.PInputText, typeof i33.PLink, typeof i34.PLinkPure, typeof i35.PLinkSocial, typeof i36.PLinkTile, typeof i37.PLinkTileModelSignature, typeof i38.PLinkTileProduct, typeof i39.PMarque, typeof i40.PModal, typeof i41.PModelSignature, typeof i42.PMultiSelect, typeof i43.PMultiSelectOption, typeof i44.POptgroup, typeof i45.PPagination, typeof i46.PPinCode, typeof i47.PPopover, typeof i48.PRadioButtonWrapper, typeof i49.PScroller, typeof i50.PSegmentedControl, typeof i51.PSegmentedControlItem, typeof i52.PSelect, typeof i53.PSelectOption, typeof i54.PSelectWrapper, typeof i55.PSheet, typeof i56.PSpinner, typeof i57.PStepperHorizontal, typeof i58.PStepperHorizontalItem, typeof i59.PSwitch, typeof i60.PTable, typeof i61.PTableBody, typeof i62.PTableCell, typeof i63.PTableHead, typeof i64.PTableHeadCell, typeof i65.PTableHeadRow, typeof i66.PTableRow, typeof i67.PTabs, typeof i68.PTabsBar, typeof i69.PTabsItem, typeof i70.PTag, typeof i71.PTagDismissible, typeof i72.PText, typeof i73.PTextFieldWrapper, typeof i74.PTextList, typeof i75.PTextListItem, typeof i76.PTextarea, typeof i77.PTextareaWrapper, typeof i78.PToast, typeof i79.PWordmark]>;
|
|
96
98
|
static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
|
|
97
99
|
}
|
|
@@ -692,6 +692,7 @@ class PInputNumber extends BaseComponentWithTheme {
|
|
|
692
692
|
form;
|
|
693
693
|
hideLabel;
|
|
694
694
|
label;
|
|
695
|
+
loading;
|
|
695
696
|
max;
|
|
696
697
|
message;
|
|
697
698
|
min;
|
|
@@ -707,14 +708,14 @@ class PInputNumber extends BaseComponentWithTheme {
|
|
|
707
708
|
change = new EventEmitter();
|
|
708
709
|
input = new EventEmitter();
|
|
709
710
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputNumber, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
710
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", max: "max", message: "message", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", step: "step", theme: "theme", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
711
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", theme: "theme", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
711
712
|
}
|
|
712
713
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputNumber, decorators: [{
|
|
713
714
|
type: Component,
|
|
714
715
|
args: [{
|
|
715
716
|
selector: 'p-input-number,[p-input-number]',
|
|
716
717
|
template: '<ng-content />',
|
|
717
|
-
inputs: ['autoComplete', 'compact', 'controls', 'description', 'disabled', 'form', 'hideLabel', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readOnly', 'required', 'state', 'step', 'theme', 'value'],
|
|
718
|
+
inputs: ['autoComplete', 'compact', 'controls', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'max', 'message', 'min', 'name', 'placeholder', 'readOnly', 'required', 'state', 'step', 'theme', 'value'],
|
|
718
719
|
outputs: ['blur', 'change', 'input'],
|
|
719
720
|
standalone: false
|
|
720
721
|
}]
|
|
@@ -728,6 +729,7 @@ class PInputPassword extends BaseComponentWithTheme {
|
|
|
728
729
|
form;
|
|
729
730
|
hideLabel;
|
|
730
731
|
label;
|
|
732
|
+
loading;
|
|
731
733
|
maxLength;
|
|
732
734
|
message;
|
|
733
735
|
minLength;
|
|
@@ -743,14 +745,88 @@ class PInputPassword extends BaseComponentWithTheme {
|
|
|
743
745
|
change = new EventEmitter();
|
|
744
746
|
input = new EventEmitter();
|
|
745
747
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputPassword, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
746
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", theme: "theme", toggle: "toggle", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
748
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", theme: "theme", toggle: "toggle", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
747
749
|
}
|
|
748
750
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputPassword, decorators: [{
|
|
749
751
|
type: Component,
|
|
750
752
|
args: [{
|
|
751
753
|
selector: 'p-input-password,[p-input-password]',
|
|
752
754
|
template: '<ng-content />',
|
|
753
|
-
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'state', 'theme', 'toggle', 'value'],
|
|
755
|
+
inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'state', 'theme', 'toggle', 'value'],
|
|
756
|
+
outputs: ['blur', 'change', 'input'],
|
|
757
|
+
standalone: false
|
|
758
|
+
}]
|
|
759
|
+
}] });
|
|
760
|
+
|
|
761
|
+
class PInputSearch extends BaseComponentWithTheme {
|
|
762
|
+
autoComplete;
|
|
763
|
+
clear;
|
|
764
|
+
compact;
|
|
765
|
+
description;
|
|
766
|
+
disabled;
|
|
767
|
+
form;
|
|
768
|
+
hideLabel;
|
|
769
|
+
indicator;
|
|
770
|
+
label;
|
|
771
|
+
loading;
|
|
772
|
+
message;
|
|
773
|
+
name;
|
|
774
|
+
placeholder;
|
|
775
|
+
readOnly;
|
|
776
|
+
required;
|
|
777
|
+
state;
|
|
778
|
+
theme;
|
|
779
|
+
value;
|
|
780
|
+
blur = new EventEmitter();
|
|
781
|
+
change = new EventEmitter();
|
|
782
|
+
input = new EventEmitter();
|
|
783
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputSearch, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
784
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", theme: "theme", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
785
|
+
}
|
|
786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputSearch, decorators: [{
|
|
787
|
+
type: Component,
|
|
788
|
+
args: [{
|
|
789
|
+
selector: 'p-input-search,[p-input-search]',
|
|
790
|
+
template: '<ng-content />',
|
|
791
|
+
inputs: ['autoComplete', 'clear', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'indicator', 'label', 'loading', 'message', 'name', 'placeholder', 'readOnly', 'required', 'state', 'theme', 'value'],
|
|
792
|
+
outputs: ['blur', 'change', 'input'],
|
|
793
|
+
standalone: false
|
|
794
|
+
}]
|
|
795
|
+
}] });
|
|
796
|
+
|
|
797
|
+
class PInputText extends BaseComponentWithTheme {
|
|
798
|
+
autoComplete;
|
|
799
|
+
compact;
|
|
800
|
+
counter;
|
|
801
|
+
description;
|
|
802
|
+
disabled;
|
|
803
|
+
form;
|
|
804
|
+
hideLabel;
|
|
805
|
+
label;
|
|
806
|
+
loading;
|
|
807
|
+
maxLength;
|
|
808
|
+
message;
|
|
809
|
+
minLength;
|
|
810
|
+
name;
|
|
811
|
+
placeholder;
|
|
812
|
+
readOnly;
|
|
813
|
+
required;
|
|
814
|
+
spellCheck;
|
|
815
|
+
state;
|
|
816
|
+
theme;
|
|
817
|
+
value;
|
|
818
|
+
blur = new EventEmitter();
|
|
819
|
+
change = new EventEmitter();
|
|
820
|
+
input = new EventEmitter();
|
|
821
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputText, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
822
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", theme: "theme", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
823
|
+
}
|
|
824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PInputText, decorators: [{
|
|
825
|
+
type: Component,
|
|
826
|
+
args: [{
|
|
827
|
+
selector: 'p-input-text,[p-input-text]',
|
|
828
|
+
template: '<ng-content />',
|
|
829
|
+
inputs: ['autoComplete', 'compact', 'counter', 'description', 'disabled', 'form', 'hideLabel', 'label', 'loading', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'spellCheck', 'state', 'theme', 'value'],
|
|
754
830
|
outputs: ['blur', 'change', 'input'],
|
|
755
831
|
standalone: false
|
|
756
832
|
}]
|
|
@@ -1220,6 +1296,7 @@ class PSelect extends BaseComponentWithTheme {
|
|
|
1220
1296
|
description;
|
|
1221
1297
|
disabled;
|
|
1222
1298
|
dropdownDirection;
|
|
1299
|
+
filter;
|
|
1223
1300
|
form;
|
|
1224
1301
|
hideLabel;
|
|
1225
1302
|
label;
|
|
@@ -1231,14 +1308,14 @@ class PSelect extends BaseComponentWithTheme {
|
|
|
1231
1308
|
value;
|
|
1232
1309
|
update = new EventEmitter();
|
|
1233
1310
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PSelect, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1234
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", type: PSelect, isStandalone: false, selector: "p-select,[p-select]", inputs: { compact: "compact", description: "description", disabled: "disabled", dropdownDirection: "dropdownDirection", form: "form", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state", theme: "theme", value: "value" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1311
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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", theme: "theme", value: "value" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1235
1312
|
}
|
|
1236
1313
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PSelect, decorators: [{
|
|
1237
1314
|
type: Component,
|
|
1238
1315
|
args: [{
|
|
1239
1316
|
selector: 'p-select,[p-select]',
|
|
1240
1317
|
template: '<ng-content />',
|
|
1241
|
-
inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'],
|
|
1318
|
+
inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'filter', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'],
|
|
1242
1319
|
outputs: ['update'],
|
|
1243
1320
|
standalone: false
|
|
1244
1321
|
}]
|
|
@@ -1805,6 +1882,8 @@ const DECLARATIONS = [
|
|
|
1805
1882
|
PInlineNotification,
|
|
1806
1883
|
PInputNumber,
|
|
1807
1884
|
PInputPassword,
|
|
1885
|
+
PInputSearch,
|
|
1886
|
+
PInputText,
|
|
1808
1887
|
PLink,
|
|
1809
1888
|
PLinkPure,
|
|
1810
1889
|
PLinkSocial,
|
|
@@ -1879,7 +1958,7 @@ class PorscheDesignSystemModule {
|
|
|
1879
1958
|
};
|
|
1880
1959
|
}
|
|
1881
1960
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1882
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark] });
|
|
1961
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PInputSearch, PInputText, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PInputSearch, PInputText, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark] });
|
|
1883
1962
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: PorscheDesignSystemModule, providers: [
|
|
1884
1963
|
{
|
|
1885
1964
|
provide: THEME_TOKEN,
|
|
@@ -1922,5 +2001,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1922
2001
|
* Generated bundle index. Do not edit.
|
|
1923
2002
|
*/
|
|
1924
2003
|
|
|
1925
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
|
|
2004
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PInputSearch, PInputText, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
|
|
1926
2005
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|