@porsche-design-system/components-angular 4.2.0-rc.5 → 4.3.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 +16 -0
- package/fesm2022/porsche-design-system-components-angular.mjs +237 -235
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +4 -4
- package/tailwindcss/index.css +57 -75
- package/types/porsche-design-system-components-angular.d.ts +581 -559
- package/vanilla-extract/cjs/font/fontHyphenationStyle.cjs +1 -1
- package/vanilla-extract/cjs/tokens/dist/esm/color/palette.cjs +10 -196
- package/vanilla-extract/esm/font/fontHyphenationStyle.mjs +1 -1
- package/vanilla-extract/esm/grid/gridSharedOffset.mjs +1 -1
- package/vanilla-extract/esm/grid/gridStyle.mjs +1 -1
- package/vanilla-extract/esm/tokens/dist/esm/color/palette.mjs +10 -196
|
@@ -1601,7 +1601,9 @@ declare const SCROLLER_ALIGN_SCROLL_INDICATORS: readonly [
|
|
|
1601
1601
|
/** @deprecated */
|
|
1602
1602
|
type ScrollerAlignScrollIndicator = (typeof SCROLLER_ALIGN_SCROLL_INDICATORS)[number];
|
|
1603
1603
|
declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
|
|
1604
|
-
"role"
|
|
1604
|
+
"role",
|
|
1605
|
+
"aria-label",
|
|
1606
|
+
"aria-description"
|
|
1605
1607
|
];
|
|
1606
1608
|
type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
|
|
1607
1609
|
/** @deprecated */
|
|
@@ -1688,6 +1690,11 @@ type TableHeadCellSort = {
|
|
|
1688
1690
|
direction?: Direction;
|
|
1689
1691
|
};
|
|
1690
1692
|
type TableUpdateEventDetail = TableHeadCellSort;
|
|
1693
|
+
declare const TABS_ARIA_ATTRIBUTES: readonly [
|
|
1694
|
+
"aria-label",
|
|
1695
|
+
"aria-description"
|
|
1696
|
+
];
|
|
1697
|
+
type TabsAriaAttribute = (typeof TABS_ARIA_ATTRIBUTES)[number];
|
|
1691
1698
|
declare const TABS_SIZES: readonly [
|
|
1692
1699
|
"small",
|
|
1693
1700
|
"medium"
|
|
@@ -1709,6 +1716,11 @@ type TabsWeight = (typeof TABS_WEIGHTS)[number];
|
|
|
1709
1716
|
type TabsUpdateEventDetail = {
|
|
1710
1717
|
activeTabIndex: number;
|
|
1711
1718
|
};
|
|
1719
|
+
declare const TABS_BAR_ARIA_ATTRIBUTES: readonly [
|
|
1720
|
+
"aria-label",
|
|
1721
|
+
"aria-description"
|
|
1722
|
+
];
|
|
1723
|
+
type TabsBarAriaAttribute = (typeof TABS_BAR_ARIA_ATTRIBUTES)[number];
|
|
1712
1724
|
declare const TABS_BAR_BACKGROUNDS: readonly [
|
|
1713
1725
|
"canvas",
|
|
1714
1726
|
"surface",
|
|
@@ -1860,66 +1872,66 @@ type WordmarkAriaAttribute = LinkAriaAttribute;
|
|
|
1860
1872
|
|
|
1861
1873
|
type PCheckboxProps = {
|
|
1862
1874
|
/**
|
|
1863
|
-
* Reflects the checkbox current checked state and allows setting the initial checked
|
|
1875
|
+
* Reflects the checkbox's current checked state and allows setting the initial checked value on load.
|
|
1864
1876
|
* @default false
|
|
1865
1877
|
*/
|
|
1866
1878
|
checked?: boolean;
|
|
1867
1879
|
/**
|
|
1868
|
-
*
|
|
1880
|
+
* Reduces the checkbox size and spacing for a more compact layout.
|
|
1869
1881
|
* @default false
|
|
1870
1882
|
*/
|
|
1871
1883
|
compact?: boolean;
|
|
1872
1884
|
/**
|
|
1873
|
-
*
|
|
1885
|
+
* Disables the checkbox, preventing all interaction. The value is not submitted with the form.
|
|
1874
1886
|
* @default false
|
|
1875
1887
|
*/
|
|
1876
1888
|
disabled?: boolean;
|
|
1877
1889
|
/**
|
|
1878
|
-
*
|
|
1890
|
+
* Associates the checkbox with a form element by its ID when not directly nested inside it.
|
|
1879
1891
|
*/
|
|
1880
1892
|
form?: string;
|
|
1881
1893
|
/**
|
|
1882
|
-
*
|
|
1894
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
1883
1895
|
* @default false
|
|
1884
1896
|
*/
|
|
1885
1897
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1886
1898
|
/**
|
|
1887
|
-
*
|
|
1899
|
+
* Puts the checkbox into an indeterminate state, indicating that a group of child items is only partially selected.
|
|
1888
1900
|
* @default false
|
|
1889
1901
|
*/
|
|
1890
1902
|
indeterminate?: boolean;
|
|
1891
1903
|
/**
|
|
1892
|
-
*
|
|
1904
|
+
* Sets the visible label text displayed next to the checkbox.
|
|
1893
1905
|
* @default ''
|
|
1894
1906
|
*/
|
|
1895
1907
|
label?: string;
|
|
1896
1908
|
/**
|
|
1897
|
-
* @experimental Disables the checkbox and
|
|
1909
|
+
* @experimental Disables the checkbox and displays a loading spinner to indicate an ongoing operation.
|
|
1898
1910
|
* @default false
|
|
1899
1911
|
*/
|
|
1900
1912
|
loading?: boolean;
|
|
1901
1913
|
/**
|
|
1902
|
-
*
|
|
1914
|
+
* Sets the validation feedback message displayed below the checkbox when `state` is `success` or `error`.
|
|
1903
1915
|
* @default ''
|
|
1904
1916
|
*/
|
|
1905
1917
|
message?: string;
|
|
1906
1918
|
/**
|
|
1907
|
-
*
|
|
1919
|
+
* Sets the name submitted with the form data to identify this checkbox's value on the server.
|
|
1908
1920
|
* @default ''
|
|
1909
1921
|
*/
|
|
1910
1922
|
name?: string;
|
|
1911
1923
|
/**
|
|
1912
|
-
* Marks the checkbox as required.
|
|
1924
|
+
* Marks the checkbox as required — form submission is blocked unless the checkbox is checked.
|
|
1913
1925
|
* @default false
|
|
1914
1926
|
*/
|
|
1915
1927
|
required?: boolean;
|
|
1916
1928
|
/**
|
|
1917
|
-
*
|
|
1929
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
1918
1930
|
* @default 'none'
|
|
1919
1931
|
*/
|
|
1920
1932
|
state?: CheckboxState;
|
|
1921
1933
|
/**
|
|
1922
|
-
*
|
|
1934
|
+
* Sets the value submitted with the form data when the checkbox is checked. Unchecked checkboxes are excluded from form submissions.
|
|
1923
1935
|
* @default 'on'
|
|
1924
1936
|
*/
|
|
1925
1937
|
value?: string;
|
|
@@ -1956,82 +1968,82 @@ declare class PCheckbox extends BaseComponent implements ControlValueAccessor {
|
|
|
1956
1968
|
|
|
1957
1969
|
type PInputDateProps = {
|
|
1958
1970
|
/**
|
|
1959
|
-
* Provides
|
|
1971
|
+
* Provides the browser with a date autofill hint (e.g. `autocomplete='bday'` for a birthday field).
|
|
1960
1972
|
*/
|
|
1961
1973
|
autoComplete?: string;
|
|
1962
1974
|
/**
|
|
1963
|
-
*
|
|
1975
|
+
* Reduces the input height and padding for a more compact layout.
|
|
1964
1976
|
* @default false
|
|
1965
1977
|
*/
|
|
1966
1978
|
compact?: boolean;
|
|
1967
1979
|
/**
|
|
1968
|
-
*
|
|
1980
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
1969
1981
|
* @default ''
|
|
1970
1982
|
*/
|
|
1971
1983
|
description?: string;
|
|
1972
1984
|
/**
|
|
1973
|
-
* Disables the
|
|
1985
|
+
* Disables the field, preventing date selection. The value is not submitted with the form.
|
|
1974
1986
|
* @default false
|
|
1975
1987
|
*/
|
|
1976
1988
|
disabled?: boolean;
|
|
1977
1989
|
/**
|
|
1978
|
-
*
|
|
1990
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
1979
1991
|
*/
|
|
1980
1992
|
form?: string;
|
|
1981
1993
|
/**
|
|
1982
|
-
*
|
|
1994
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
1983
1995
|
* @default false
|
|
1984
1996
|
*/
|
|
1985
1997
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1986
1998
|
/**
|
|
1987
|
-
*
|
|
1999
|
+
* Sets the visible label text displayed above the input field.
|
|
1988
2000
|
* @default ''
|
|
1989
2001
|
*/
|
|
1990
2002
|
label?: string;
|
|
1991
2003
|
/**
|
|
1992
|
-
* @experimental
|
|
2004
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
1993
2005
|
* @default false
|
|
1994
2006
|
*/
|
|
1995
2007
|
loading?: boolean;
|
|
1996
2008
|
/**
|
|
1997
|
-
*
|
|
2009
|
+
* Sets the latest selectable date in YYYY-MM-DD format. Dates after this are disabled in the picker.
|
|
1998
2010
|
*/
|
|
1999
2011
|
max?: string;
|
|
2000
2012
|
/**
|
|
2001
|
-
*
|
|
2013
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2002
2014
|
* @default ''
|
|
2003
2015
|
*/
|
|
2004
2016
|
message?: string;
|
|
2005
2017
|
/**
|
|
2006
|
-
*
|
|
2018
|
+
* Sets the earliest selectable date in YYYY-MM-DD format. Dates before this are disabled in the picker.
|
|
2007
2019
|
*/
|
|
2008
2020
|
min?: string;
|
|
2009
2021
|
/**
|
|
2010
|
-
*
|
|
2022
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2011
2023
|
*/
|
|
2012
2024
|
name: string;
|
|
2013
2025
|
/**
|
|
2014
|
-
*
|
|
2026
|
+
* Makes the field read-only — the date is displayed but cannot be changed. The value is still submitted with the form.
|
|
2015
2027
|
* @default false
|
|
2016
2028
|
*/
|
|
2017
2029
|
readOnly?: boolean;
|
|
2018
2030
|
/**
|
|
2019
|
-
*
|
|
2031
|
+
* Marks the field as required — form submission is blocked while no date is selected.
|
|
2020
2032
|
* @default false
|
|
2021
2033
|
*/
|
|
2022
2034
|
required?: boolean;
|
|
2023
2035
|
/**
|
|
2024
|
-
*
|
|
2036
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2025
2037
|
* @default 'none'
|
|
2026
2038
|
*/
|
|
2027
2039
|
state?: InputDateState;
|
|
2028
2040
|
/**
|
|
2029
|
-
*
|
|
2041
|
+
* Sets the stepping interval in days. The selected date must align with the `min` date by a multiple of this value.
|
|
2030
2042
|
* @default 1
|
|
2031
2043
|
*/
|
|
2032
2044
|
step?: number;
|
|
2033
2045
|
/**
|
|
2034
|
-
*
|
|
2046
|
+
* Sets the current date value in YYYY-MM-DD format (e.g. `2025-07-02`).
|
|
2035
2047
|
* @default ''
|
|
2036
2048
|
*/
|
|
2037
2049
|
value?: string | null;
|
|
@@ -2073,96 +2085,96 @@ declare class PInputDate extends BaseComponent implements ControlValueAccessor {
|
|
|
2073
2085
|
|
|
2074
2086
|
type PInputEmailProps = {
|
|
2075
2087
|
/**
|
|
2076
|
-
* Provides
|
|
2088
|
+
* Provides the browser with a data type hint to enable relevant autofill suggestions (e.g. `autocomplete='email'`).
|
|
2077
2089
|
*/
|
|
2078
2090
|
autoComplete?: string;
|
|
2079
2091
|
/**
|
|
2080
|
-
*
|
|
2092
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2081
2093
|
* @default false
|
|
2082
2094
|
*/
|
|
2083
2095
|
compact?: boolean;
|
|
2084
2096
|
/**
|
|
2085
|
-
*
|
|
2097
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2086
2098
|
* @default ''
|
|
2087
2099
|
*/
|
|
2088
2100
|
description?: string;
|
|
2089
2101
|
/**
|
|
2090
|
-
* Disables the input
|
|
2102
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
2091
2103
|
* @default false
|
|
2092
2104
|
*/
|
|
2093
2105
|
disabled?: boolean;
|
|
2094
2106
|
/**
|
|
2095
|
-
*
|
|
2107
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2096
2108
|
*/
|
|
2097
2109
|
form?: string;
|
|
2098
2110
|
/**
|
|
2099
|
-
*
|
|
2111
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2100
2112
|
* @default false
|
|
2101
2113
|
*/
|
|
2102
2114
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2103
2115
|
/**
|
|
2104
|
-
*
|
|
2116
|
+
* Shows an email icon at the start of the field as a visual indicator.
|
|
2105
2117
|
* @default false
|
|
2106
2118
|
*/
|
|
2107
2119
|
indicator?: boolean;
|
|
2108
2120
|
/**
|
|
2109
|
-
*
|
|
2121
|
+
* Sets the visible label text displayed above the input field.
|
|
2110
2122
|
* @default ''
|
|
2111
2123
|
*/
|
|
2112
2124
|
label?: string;
|
|
2113
2125
|
/**
|
|
2114
|
-
* @experimental
|
|
2126
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2115
2127
|
* @default false
|
|
2116
2128
|
*/
|
|
2117
2129
|
loading?: boolean;
|
|
2118
2130
|
/**
|
|
2119
|
-
*
|
|
2131
|
+
* Sets the maximum number of characters the user can enter.
|
|
2120
2132
|
*/
|
|
2121
2133
|
maxLength?: number;
|
|
2122
2134
|
/**
|
|
2123
|
-
*
|
|
2135
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2124
2136
|
* @default ''
|
|
2125
2137
|
*/
|
|
2126
2138
|
message?: string;
|
|
2127
2139
|
/**
|
|
2128
|
-
*
|
|
2140
|
+
* Sets the minimum number of characters required for the field to be considered valid.
|
|
2129
2141
|
*/
|
|
2130
2142
|
minLength?: number;
|
|
2131
2143
|
/**
|
|
2132
|
-
* Allows
|
|
2144
|
+
* Allows entry of multiple email addresses separated by commas. The browser validates each address individually.
|
|
2133
2145
|
* @default false
|
|
2134
2146
|
*/
|
|
2135
2147
|
multiple?: boolean;
|
|
2136
2148
|
/**
|
|
2137
|
-
*
|
|
2149
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2138
2150
|
*/
|
|
2139
2151
|
name: string;
|
|
2140
2152
|
/**
|
|
2141
|
-
*
|
|
2153
|
+
* Sets a regular expression the entered value must match to be valid. Overrides the browser's default email validation.
|
|
2142
2154
|
*/
|
|
2143
2155
|
pattern?: string;
|
|
2144
2156
|
/**
|
|
2145
|
-
*
|
|
2157
|
+
* Sets placeholder text shown inside the field when it is empty, to hint at the expected format.
|
|
2146
2158
|
* @default ''
|
|
2147
2159
|
*/
|
|
2148
2160
|
placeholder?: string;
|
|
2149
2161
|
/**
|
|
2150
|
-
*
|
|
2162
|
+
* Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
|
|
2151
2163
|
* @default false
|
|
2152
2164
|
*/
|
|
2153
2165
|
readOnly?: boolean;
|
|
2154
2166
|
/**
|
|
2155
|
-
*
|
|
2167
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
2156
2168
|
* @default false
|
|
2157
2169
|
*/
|
|
2158
2170
|
required?: boolean;
|
|
2159
2171
|
/**
|
|
2160
|
-
*
|
|
2172
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2161
2173
|
* @default 'none'
|
|
2162
2174
|
*/
|
|
2163
2175
|
state?: InputEmailState;
|
|
2164
2176
|
/**
|
|
2165
|
-
*
|
|
2177
|
+
* Sets the current email value. When `multiple` is enabled, accepts a comma-separated list of email addresses.
|
|
2166
2178
|
* @default ''
|
|
2167
2179
|
*/
|
|
2168
2180
|
value?: string | null;
|
|
@@ -2207,82 +2219,82 @@ declare class PInputEmail extends BaseComponent implements ControlValueAccessor
|
|
|
2207
2219
|
|
|
2208
2220
|
type PInputMonthProps = {
|
|
2209
2221
|
/**
|
|
2210
|
-
* Provides
|
|
2222
|
+
* Provides the browser with a month/year autofill hint.
|
|
2211
2223
|
*/
|
|
2212
2224
|
autoComplete?: string;
|
|
2213
2225
|
/**
|
|
2214
|
-
*
|
|
2226
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2215
2227
|
* @default false
|
|
2216
2228
|
*/
|
|
2217
2229
|
compact?: boolean;
|
|
2218
2230
|
/**
|
|
2219
|
-
*
|
|
2231
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2220
2232
|
* @default ''
|
|
2221
2233
|
*/
|
|
2222
2234
|
description?: string;
|
|
2223
2235
|
/**
|
|
2224
|
-
* Disables the
|
|
2236
|
+
* Disables the field, preventing month selection. The value is not submitted with the form.
|
|
2225
2237
|
* @default false
|
|
2226
2238
|
*/
|
|
2227
2239
|
disabled?: boolean;
|
|
2228
2240
|
/**
|
|
2229
|
-
*
|
|
2241
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2230
2242
|
*/
|
|
2231
2243
|
form?: string;
|
|
2232
2244
|
/**
|
|
2233
|
-
*
|
|
2245
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2234
2246
|
* @default false
|
|
2235
2247
|
*/
|
|
2236
2248
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2237
2249
|
/**
|
|
2238
|
-
*
|
|
2250
|
+
* Sets the visible label text displayed above the input field.
|
|
2239
2251
|
* @default ''
|
|
2240
2252
|
*/
|
|
2241
2253
|
label?: string;
|
|
2242
2254
|
/**
|
|
2243
|
-
* @experimental
|
|
2255
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2244
2256
|
* @default false
|
|
2245
2257
|
*/
|
|
2246
2258
|
loading?: boolean;
|
|
2247
2259
|
/**
|
|
2248
|
-
*
|
|
2260
|
+
* Sets the latest selectable month in YYYY-MM format. Months after this are disabled in the picker.
|
|
2249
2261
|
*/
|
|
2250
2262
|
max?: string;
|
|
2251
2263
|
/**
|
|
2252
|
-
*
|
|
2264
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2253
2265
|
* @default ''
|
|
2254
2266
|
*/
|
|
2255
2267
|
message?: string;
|
|
2256
2268
|
/**
|
|
2257
|
-
*
|
|
2269
|
+
* Sets the earliest selectable month in YYYY-MM format. Months before this are disabled in the picker.
|
|
2258
2270
|
*/
|
|
2259
2271
|
min?: string;
|
|
2260
2272
|
/**
|
|
2261
|
-
*
|
|
2273
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2262
2274
|
*/
|
|
2263
2275
|
name: string;
|
|
2264
2276
|
/**
|
|
2265
|
-
*
|
|
2277
|
+
* Makes the field read-only — the value is displayed but cannot be changed. The value is still submitted with the form.
|
|
2266
2278
|
* @default false
|
|
2267
2279
|
*/
|
|
2268
2280
|
readOnly?: boolean;
|
|
2269
2281
|
/**
|
|
2270
|
-
*
|
|
2282
|
+
* Marks the field as required — form submission is blocked while no month is selected.
|
|
2271
2283
|
* @default false
|
|
2272
2284
|
*/
|
|
2273
2285
|
required?: boolean;
|
|
2274
2286
|
/**
|
|
2275
|
-
*
|
|
2287
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2276
2288
|
* @default 'none'
|
|
2277
2289
|
*/
|
|
2278
2290
|
state?: InputMonthState;
|
|
2279
2291
|
/**
|
|
2280
|
-
*
|
|
2292
|
+
* Sets the stepping interval in months (e.g. `1` for monthly, `12` for annual).
|
|
2281
2293
|
* @default 1
|
|
2282
2294
|
*/
|
|
2283
2295
|
step?: number;
|
|
2284
2296
|
/**
|
|
2285
|
-
*
|
|
2297
|
+
* Sets the current month value in YYYY-MM format (e.g. `2025-07`).
|
|
2286
2298
|
* @default ''
|
|
2287
2299
|
*/
|
|
2288
2300
|
value?: string | null;
|
|
@@ -2324,92 +2336,92 @@ declare class PInputMonth extends BaseComponent implements ControlValueAccessor
|
|
|
2324
2336
|
|
|
2325
2337
|
type PInputNumberProps = {
|
|
2326
2338
|
/**
|
|
2327
|
-
* Provides
|
|
2339
|
+
* Provides the browser with a data type hint to enable relevant autofill suggestions (e.g. `autocomplete='postal-code'`).
|
|
2328
2340
|
*/
|
|
2329
2341
|
autoComplete?: string;
|
|
2330
2342
|
/**
|
|
2331
|
-
*
|
|
2343
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2332
2344
|
* @default false
|
|
2333
2345
|
*/
|
|
2334
2346
|
compact?: boolean;
|
|
2335
2347
|
/**
|
|
2336
|
-
*
|
|
2348
|
+
* Shows increment/decrement spin buttons inside the field to adjust the numeric value by clicking.
|
|
2337
2349
|
* @default false
|
|
2338
2350
|
*/
|
|
2339
2351
|
controls?: boolean;
|
|
2340
2352
|
/**
|
|
2341
|
-
*
|
|
2353
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2342
2354
|
* @default ''
|
|
2343
2355
|
*/
|
|
2344
2356
|
description?: string;
|
|
2345
2357
|
/**
|
|
2346
|
-
* Disables the input
|
|
2358
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
2347
2359
|
* @default false
|
|
2348
2360
|
*/
|
|
2349
2361
|
disabled?: boolean;
|
|
2350
2362
|
/**
|
|
2351
|
-
*
|
|
2363
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2352
2364
|
*/
|
|
2353
2365
|
form?: string;
|
|
2354
2366
|
/**
|
|
2355
|
-
*
|
|
2367
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2356
2368
|
* @default false
|
|
2357
2369
|
*/
|
|
2358
2370
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2359
2371
|
/**
|
|
2360
|
-
*
|
|
2372
|
+
* Sets the visible label text displayed above the input field.
|
|
2361
2373
|
* @default ''
|
|
2362
2374
|
*/
|
|
2363
2375
|
label?: string;
|
|
2364
2376
|
/**
|
|
2365
|
-
* @experimental
|
|
2377
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2366
2378
|
* @default false
|
|
2367
2379
|
*/
|
|
2368
2380
|
loading?: boolean;
|
|
2369
2381
|
/**
|
|
2370
|
-
*
|
|
2382
|
+
* Sets the maximum allowed numeric value. Values above this are invalid.
|
|
2371
2383
|
*/
|
|
2372
2384
|
max?: number;
|
|
2373
2385
|
/**
|
|
2374
|
-
*
|
|
2386
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2375
2387
|
* @default ''
|
|
2376
2388
|
*/
|
|
2377
2389
|
message?: string;
|
|
2378
2390
|
/**
|
|
2379
|
-
*
|
|
2391
|
+
* Sets the minimum allowed numeric value. Values below this are invalid.
|
|
2380
2392
|
*/
|
|
2381
2393
|
min?: number;
|
|
2382
2394
|
/**
|
|
2383
|
-
*
|
|
2395
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2384
2396
|
*/
|
|
2385
2397
|
name: string;
|
|
2386
2398
|
/**
|
|
2387
|
-
*
|
|
2399
|
+
* Sets placeholder text shown inside the field when it is empty, to hint at the expected format.
|
|
2388
2400
|
* @default ''
|
|
2389
2401
|
*/
|
|
2390
2402
|
placeholder?: string;
|
|
2391
2403
|
/**
|
|
2392
|
-
*
|
|
2404
|
+
* Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
|
|
2393
2405
|
* @default false
|
|
2394
2406
|
*/
|
|
2395
2407
|
readOnly?: boolean;
|
|
2396
2408
|
/**
|
|
2397
|
-
*
|
|
2409
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
2398
2410
|
* @default false
|
|
2399
2411
|
*/
|
|
2400
2412
|
required?: boolean;
|
|
2401
2413
|
/**
|
|
2402
|
-
*
|
|
2414
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2403
2415
|
* @default 'none'
|
|
2404
2416
|
*/
|
|
2405
2417
|
state?: InputNumberState;
|
|
2406
2418
|
/**
|
|
2407
|
-
*
|
|
2419
|
+
* Sets the stepping granularity — the value must be a multiple of this number. Also controls step button increment size.
|
|
2408
2420
|
* @default 1
|
|
2409
2421
|
*/
|
|
2410
2422
|
step?: number;
|
|
2411
2423
|
/**
|
|
2412
|
-
*
|
|
2424
|
+
* Sets the current numeric value of the field.
|
|
2413
2425
|
* @default ''
|
|
2414
2426
|
*/
|
|
2415
2427
|
value?: string | number | null;
|
|
@@ -2453,87 +2465,87 @@ declare class PInputNumber extends BaseComponent implements ControlValueAccessor
|
|
|
2453
2465
|
|
|
2454
2466
|
type PInputPasswordProps = {
|
|
2455
2467
|
/**
|
|
2456
|
-
* Provides
|
|
2468
|
+
* Provides the browser with a password autofill hint (e.g. `autocomplete='current-password'` or `autocomplete='new-password'`).
|
|
2457
2469
|
*/
|
|
2458
2470
|
autoComplete?: string;
|
|
2459
2471
|
/**
|
|
2460
|
-
*
|
|
2472
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2461
2473
|
* @default false
|
|
2462
2474
|
*/
|
|
2463
2475
|
compact?: boolean;
|
|
2464
2476
|
/**
|
|
2465
|
-
*
|
|
2477
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2466
2478
|
* @default ''
|
|
2467
2479
|
*/
|
|
2468
2480
|
description?: string;
|
|
2469
2481
|
/**
|
|
2470
|
-
* Disables the input
|
|
2482
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
2471
2483
|
* @default false
|
|
2472
2484
|
*/
|
|
2473
2485
|
disabled?: boolean;
|
|
2474
2486
|
/**
|
|
2475
|
-
*
|
|
2487
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2476
2488
|
*/
|
|
2477
2489
|
form?: string;
|
|
2478
2490
|
/**
|
|
2479
|
-
*
|
|
2491
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2480
2492
|
* @default false
|
|
2481
2493
|
*/
|
|
2482
2494
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2483
2495
|
/**
|
|
2484
|
-
*
|
|
2496
|
+
* Sets the visible label text displayed above the input field.
|
|
2485
2497
|
* @default ''
|
|
2486
2498
|
*/
|
|
2487
2499
|
label?: string;
|
|
2488
2500
|
/**
|
|
2489
|
-
* @experimental
|
|
2501
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2490
2502
|
* @default false
|
|
2491
2503
|
*/
|
|
2492
2504
|
loading?: boolean;
|
|
2493
2505
|
/**
|
|
2494
|
-
*
|
|
2506
|
+
* Sets the maximum number of characters the user can enter.
|
|
2495
2507
|
*/
|
|
2496
2508
|
maxLength?: number;
|
|
2497
2509
|
/**
|
|
2498
|
-
*
|
|
2510
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2499
2511
|
* @default ''
|
|
2500
2512
|
*/
|
|
2501
2513
|
message?: string;
|
|
2502
2514
|
/**
|
|
2503
|
-
*
|
|
2515
|
+
* Sets the minimum number of characters required for the field to be considered valid.
|
|
2504
2516
|
*/
|
|
2505
2517
|
minLength?: number;
|
|
2506
2518
|
/**
|
|
2507
|
-
*
|
|
2519
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2508
2520
|
*/
|
|
2509
2521
|
name: string;
|
|
2510
2522
|
/**
|
|
2511
|
-
*
|
|
2523
|
+
* Sets placeholder text shown inside the field when it is empty.
|
|
2512
2524
|
* @default ''
|
|
2513
2525
|
*/
|
|
2514
2526
|
placeholder?: string;
|
|
2515
2527
|
/**
|
|
2516
|
-
*
|
|
2528
|
+
* Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
|
|
2517
2529
|
* @default false
|
|
2518
2530
|
*/
|
|
2519
2531
|
readOnly?: boolean;
|
|
2520
2532
|
/**
|
|
2521
|
-
*
|
|
2533
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
2522
2534
|
* @default false
|
|
2523
2535
|
*/
|
|
2524
2536
|
required?: boolean;
|
|
2525
2537
|
/**
|
|
2526
|
-
*
|
|
2538
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2527
2539
|
* @default 'none'
|
|
2528
2540
|
*/
|
|
2529
2541
|
state?: InputPasswordState;
|
|
2530
2542
|
/**
|
|
2531
|
-
*
|
|
2543
|
+
* Shows a toggle button that switches the password between masked and plain text visibility.
|
|
2532
2544
|
* @default false
|
|
2533
2545
|
*/
|
|
2534
2546
|
toggle?: boolean;
|
|
2535
2547
|
/**
|
|
2536
|
-
*
|
|
2548
|
+
* Sets the current password value of the field.
|
|
2537
2549
|
* @default ''
|
|
2538
2550
|
*/
|
|
2539
2551
|
value?: string | null;
|
|
@@ -2576,96 +2588,96 @@ declare class PInputPassword extends BaseComponent implements ControlValueAccess
|
|
|
2576
2588
|
|
|
2577
2589
|
type PInputSearchProps = {
|
|
2578
2590
|
/**
|
|
2579
|
-
*
|
|
2591
|
+
* Sets additional ARIA attributes on the search input, useful for combobox patterns (e.g. `role="combobox"`, `aria-expanded`).
|
|
2580
2592
|
*/
|
|
2581
2593
|
aria?: SelectedAriaAttributes<InputSearchAriaAttribute>;
|
|
2582
2594
|
/**
|
|
2583
|
-
* Provides
|
|
2595
|
+
* Provides the browser with a data type hint to enable relevant autofill suggestions.
|
|
2584
2596
|
*/
|
|
2585
2597
|
autoComplete?: string;
|
|
2586
2598
|
/**
|
|
2587
|
-
*
|
|
2599
|
+
* Shows a clear button (×) inside the field that resets the value to empty when clicked.
|
|
2588
2600
|
* @default false
|
|
2589
2601
|
*/
|
|
2590
2602
|
clear?: boolean;
|
|
2591
2603
|
/**
|
|
2592
|
-
*
|
|
2604
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2593
2605
|
* @default false
|
|
2594
2606
|
*/
|
|
2595
2607
|
compact?: boolean;
|
|
2596
2608
|
/**
|
|
2597
|
-
*
|
|
2609
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2598
2610
|
* @default ''
|
|
2599
2611
|
*/
|
|
2600
2612
|
description?: string;
|
|
2601
2613
|
/**
|
|
2602
|
-
* Disables the input
|
|
2614
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
2603
2615
|
* @default false
|
|
2604
2616
|
*/
|
|
2605
2617
|
disabled?: boolean;
|
|
2606
2618
|
/**
|
|
2607
|
-
*
|
|
2619
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2608
2620
|
*/
|
|
2609
2621
|
form?: string;
|
|
2610
2622
|
/**
|
|
2611
|
-
*
|
|
2623
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2612
2624
|
* @default false
|
|
2613
2625
|
*/
|
|
2614
2626
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2615
2627
|
/**
|
|
2616
|
-
*
|
|
2628
|
+
* Shows a magnifying glass icon inside the field as a visual affordance for search input.
|
|
2617
2629
|
* @default false
|
|
2618
2630
|
*/
|
|
2619
2631
|
indicator?: boolean;
|
|
2620
2632
|
/**
|
|
2621
|
-
*
|
|
2633
|
+
* Sets the visible label text displayed above the input field.
|
|
2622
2634
|
* @default ''
|
|
2623
2635
|
*/
|
|
2624
2636
|
label?: string;
|
|
2625
2637
|
/**
|
|
2626
|
-
* @experimental
|
|
2638
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2627
2639
|
* @default false
|
|
2628
2640
|
*/
|
|
2629
2641
|
loading?: boolean;
|
|
2630
2642
|
/**
|
|
2631
|
-
*
|
|
2643
|
+
* Sets the maximum number of characters the user can enter.
|
|
2632
2644
|
*/
|
|
2633
2645
|
maxLength?: number;
|
|
2634
2646
|
/**
|
|
2635
|
-
*
|
|
2647
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2636
2648
|
* @default ''
|
|
2637
2649
|
*/
|
|
2638
2650
|
message?: string;
|
|
2639
2651
|
/**
|
|
2640
|
-
*
|
|
2652
|
+
* Sets the minimum number of characters required for the field to be considered valid.
|
|
2641
2653
|
*/
|
|
2642
2654
|
minLength?: number;
|
|
2643
2655
|
/**
|
|
2644
|
-
*
|
|
2656
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2645
2657
|
*/
|
|
2646
2658
|
name: string;
|
|
2647
2659
|
/**
|
|
2648
|
-
*
|
|
2660
|
+
* Sets placeholder text shown inside the field when it is empty.
|
|
2649
2661
|
* @default ''
|
|
2650
2662
|
*/
|
|
2651
2663
|
placeholder?: string;
|
|
2652
2664
|
/**
|
|
2653
|
-
*
|
|
2665
|
+
* Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
|
|
2654
2666
|
* @default false
|
|
2655
2667
|
*/
|
|
2656
2668
|
readOnly?: boolean;
|
|
2657
2669
|
/**
|
|
2658
|
-
*
|
|
2670
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
2659
2671
|
* @default false
|
|
2660
2672
|
*/
|
|
2661
2673
|
required?: boolean;
|
|
2662
2674
|
/**
|
|
2663
|
-
*
|
|
2675
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2664
2676
|
* @default 'none'
|
|
2665
2677
|
*/
|
|
2666
2678
|
state?: InputSearchState;
|
|
2667
2679
|
/**
|
|
2668
|
-
*
|
|
2680
|
+
* Sets the current search query value of the field.
|
|
2669
2681
|
* @default ''
|
|
2670
2682
|
*/
|
|
2671
2683
|
value?: string | null;
|
|
@@ -2710,91 +2722,91 @@ declare class PInputSearch extends BaseComponent implements ControlValueAccessor
|
|
|
2710
2722
|
|
|
2711
2723
|
type PInputTelProps = {
|
|
2712
2724
|
/**
|
|
2713
|
-
* Provides
|
|
2725
|
+
* Provides the browser with a phone number autofill hint (e.g. `autocomplete='tel'`).
|
|
2714
2726
|
*/
|
|
2715
2727
|
autoComplete?: string;
|
|
2716
2728
|
/**
|
|
2717
|
-
*
|
|
2729
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2718
2730
|
* @default false
|
|
2719
2731
|
*/
|
|
2720
2732
|
compact?: boolean;
|
|
2721
2733
|
/**
|
|
2722
|
-
*
|
|
2734
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2723
2735
|
* @default ''
|
|
2724
2736
|
*/
|
|
2725
2737
|
description?: string;
|
|
2726
2738
|
/**
|
|
2727
|
-
* Disables the input
|
|
2739
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
2728
2740
|
* @default false
|
|
2729
2741
|
*/
|
|
2730
2742
|
disabled?: boolean;
|
|
2731
2743
|
/**
|
|
2732
|
-
*
|
|
2744
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2733
2745
|
*/
|
|
2734
2746
|
form?: string;
|
|
2735
2747
|
/**
|
|
2736
|
-
*
|
|
2748
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2737
2749
|
* @default false
|
|
2738
2750
|
*/
|
|
2739
2751
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2740
2752
|
/**
|
|
2741
|
-
*
|
|
2753
|
+
* Shows a phone icon at the start of the field as a visual indicator for telephone input.
|
|
2742
2754
|
* @default false
|
|
2743
2755
|
*/
|
|
2744
2756
|
indicator?: boolean;
|
|
2745
2757
|
/**
|
|
2746
|
-
*
|
|
2758
|
+
* Sets the visible label text displayed above the input field.
|
|
2747
2759
|
* @default ''
|
|
2748
2760
|
*/
|
|
2749
2761
|
label?: string;
|
|
2750
2762
|
/**
|
|
2751
|
-
* @experimental
|
|
2763
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2752
2764
|
* @default false
|
|
2753
2765
|
*/
|
|
2754
2766
|
loading?: boolean;
|
|
2755
2767
|
/**
|
|
2756
|
-
*
|
|
2768
|
+
* Sets the maximum number of characters the user can enter.
|
|
2757
2769
|
*/
|
|
2758
2770
|
maxLength?: number;
|
|
2759
2771
|
/**
|
|
2760
|
-
*
|
|
2772
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2761
2773
|
* @default ''
|
|
2762
2774
|
*/
|
|
2763
2775
|
message?: string;
|
|
2764
2776
|
/**
|
|
2765
|
-
*
|
|
2777
|
+
* Sets the minimum number of characters required for the field to be considered valid.
|
|
2766
2778
|
*/
|
|
2767
2779
|
minLength?: number;
|
|
2768
2780
|
/**
|
|
2769
|
-
*
|
|
2781
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2770
2782
|
*/
|
|
2771
2783
|
name: string;
|
|
2772
2784
|
/**
|
|
2773
|
-
*
|
|
2785
|
+
* Sets a regular expression the entered value must match to be valid. Overrides the browser's default telephone validation.
|
|
2774
2786
|
*/
|
|
2775
2787
|
pattern?: string;
|
|
2776
2788
|
/**
|
|
2777
|
-
*
|
|
2789
|
+
* Sets placeholder text shown inside the field when it is empty, such as an example phone number format.
|
|
2778
2790
|
* @default ''
|
|
2779
2791
|
*/
|
|
2780
2792
|
placeholder?: string;
|
|
2781
2793
|
/**
|
|
2782
|
-
*
|
|
2794
|
+
* Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
|
|
2783
2795
|
* @default false
|
|
2784
2796
|
*/
|
|
2785
2797
|
readOnly?: boolean;
|
|
2786
2798
|
/**
|
|
2787
|
-
*
|
|
2799
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
2788
2800
|
* @default false
|
|
2789
2801
|
*/
|
|
2790
2802
|
required?: boolean;
|
|
2791
2803
|
/**
|
|
2792
|
-
*
|
|
2804
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2793
2805
|
* @default 'none'
|
|
2794
2806
|
*/
|
|
2795
2807
|
state?: InputTelState;
|
|
2796
2808
|
/**
|
|
2797
|
-
*
|
|
2809
|
+
* Sets the current telephone number value of the field.
|
|
2798
2810
|
* @default ''
|
|
2799
2811
|
*/
|
|
2800
2812
|
value?: string | null;
|
|
@@ -2838,91 +2850,91 @@ declare class PInputTel extends BaseComponent implements ControlValueAccessor {
|
|
|
2838
2850
|
|
|
2839
2851
|
type PInputTextProps = {
|
|
2840
2852
|
/**
|
|
2841
|
-
* Provides
|
|
2853
|
+
* Provides the browser with a data type hint to enable relevant autofill suggestions (e.g. `autocomplete='name'`).
|
|
2842
2854
|
*/
|
|
2843
2855
|
autoComplete?: string;
|
|
2844
2856
|
/**
|
|
2845
|
-
*
|
|
2857
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2846
2858
|
* @default false
|
|
2847
2859
|
*/
|
|
2848
2860
|
compact?: boolean;
|
|
2849
2861
|
/**
|
|
2850
|
-
*
|
|
2862
|
+
* Shows a live character counter below the field indicating how many characters have been entered relative to `maxLength`.
|
|
2851
2863
|
* @default false
|
|
2852
2864
|
*/
|
|
2853
2865
|
counter?: boolean;
|
|
2854
2866
|
/**
|
|
2855
|
-
*
|
|
2867
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2856
2868
|
* @default ''
|
|
2857
2869
|
*/
|
|
2858
2870
|
description?: string;
|
|
2859
2871
|
/**
|
|
2860
|
-
* Disables the input
|
|
2872
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
2861
2873
|
* @default false
|
|
2862
2874
|
*/
|
|
2863
2875
|
disabled?: boolean;
|
|
2864
2876
|
/**
|
|
2865
|
-
*
|
|
2877
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2866
2878
|
*/
|
|
2867
2879
|
form?: string;
|
|
2868
2880
|
/**
|
|
2869
|
-
*
|
|
2881
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2870
2882
|
* @default false
|
|
2871
2883
|
*/
|
|
2872
2884
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2873
2885
|
/**
|
|
2874
|
-
*
|
|
2886
|
+
* Sets the visible label text displayed above the input field.
|
|
2875
2887
|
* @default ''
|
|
2876
2888
|
*/
|
|
2877
2889
|
label?: string;
|
|
2878
2890
|
/**
|
|
2879
|
-
* @experimental
|
|
2891
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
2880
2892
|
* @default false
|
|
2881
2893
|
*/
|
|
2882
2894
|
loading?: boolean;
|
|
2883
2895
|
/**
|
|
2884
|
-
*
|
|
2896
|
+
* Sets the maximum number of characters the user can enter.
|
|
2885
2897
|
*/
|
|
2886
2898
|
maxLength?: number;
|
|
2887
2899
|
/**
|
|
2888
|
-
*
|
|
2900
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
2889
2901
|
* @default ''
|
|
2890
2902
|
*/
|
|
2891
2903
|
message?: string;
|
|
2892
2904
|
/**
|
|
2893
|
-
*
|
|
2905
|
+
* Sets the minimum number of characters required for the field to be considered valid.
|
|
2894
2906
|
*/
|
|
2895
2907
|
minLength?: number;
|
|
2896
2908
|
/**
|
|
2897
|
-
*
|
|
2909
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
2898
2910
|
*/
|
|
2899
2911
|
name: string;
|
|
2900
2912
|
/**
|
|
2901
|
-
*
|
|
2913
|
+
* Sets placeholder text shown inside the field when it is empty, to hint at the expected format.
|
|
2902
2914
|
* @default ''
|
|
2903
2915
|
*/
|
|
2904
2916
|
placeholder?: string;
|
|
2905
2917
|
/**
|
|
2906
|
-
*
|
|
2918
|
+
* Makes the field read-only — the value is displayed but cannot be edited by the user. The value is still submitted with the form.
|
|
2907
2919
|
* @default false
|
|
2908
2920
|
*/
|
|
2909
2921
|
readOnly?: boolean;
|
|
2910
2922
|
/**
|
|
2911
|
-
*
|
|
2923
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
2912
2924
|
* @default false
|
|
2913
2925
|
*/
|
|
2914
2926
|
required?: boolean;
|
|
2915
2927
|
/**
|
|
2916
|
-
*
|
|
2928
|
+
* Controls whether the browser's built-in spell-checking is enabled for this field.
|
|
2917
2929
|
*/
|
|
2918
2930
|
spellCheck?: boolean;
|
|
2919
2931
|
/**
|
|
2920
|
-
*
|
|
2932
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
2921
2933
|
* @default 'none'
|
|
2922
2934
|
*/
|
|
2923
2935
|
state?: InputTextState;
|
|
2924
2936
|
/**
|
|
2925
|
-
*
|
|
2937
|
+
* Sets the current text value of the input field.
|
|
2926
2938
|
* @default ''
|
|
2927
2939
|
*/
|
|
2928
2940
|
value?: string | number | null;
|
|
@@ -2966,82 +2978,82 @@ declare class PInputText extends BaseComponent implements ControlValueAccessor {
|
|
|
2966
2978
|
|
|
2967
2979
|
type PInputTimeProps = {
|
|
2968
2980
|
/**
|
|
2969
|
-
* Provides
|
|
2981
|
+
* Provides the browser with a time autofill hint.
|
|
2970
2982
|
*/
|
|
2971
2983
|
autoComplete?: string;
|
|
2972
2984
|
/**
|
|
2973
|
-
*
|
|
2985
|
+
* Reduces the input height and padding for a more compact layout.
|
|
2974
2986
|
* @default false
|
|
2975
2987
|
*/
|
|
2976
2988
|
compact?: boolean;
|
|
2977
2989
|
/**
|
|
2978
|
-
*
|
|
2990
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
2979
2991
|
* @default ''
|
|
2980
2992
|
*/
|
|
2981
2993
|
description?: string;
|
|
2982
2994
|
/**
|
|
2983
|
-
* Disables the
|
|
2995
|
+
* Disables the field, preventing time selection. The value is not submitted with the form.
|
|
2984
2996
|
* @default false
|
|
2985
2997
|
*/
|
|
2986
2998
|
disabled?: boolean;
|
|
2987
2999
|
/**
|
|
2988
|
-
*
|
|
3000
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
2989
3001
|
*/
|
|
2990
3002
|
form?: string;
|
|
2991
3003
|
/**
|
|
2992
|
-
*
|
|
3004
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
2993
3005
|
* @default false
|
|
2994
3006
|
*/
|
|
2995
3007
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2996
3008
|
/**
|
|
2997
|
-
*
|
|
3009
|
+
* Sets the visible label text displayed above the input field.
|
|
2998
3010
|
* @default ''
|
|
2999
3011
|
*/
|
|
3000
3012
|
label?: string;
|
|
3001
3013
|
/**
|
|
3002
|
-
* @experimental
|
|
3014
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
3003
3015
|
* @default false
|
|
3004
3016
|
*/
|
|
3005
3017
|
loading?: boolean;
|
|
3006
3018
|
/**
|
|
3007
|
-
*
|
|
3019
|
+
* Sets the latest selectable time in `hh:mm` or `hh:mm:ss` format. Times after this are disabled in the picker.
|
|
3008
3020
|
*/
|
|
3009
3021
|
max?: string;
|
|
3010
3022
|
/**
|
|
3011
|
-
*
|
|
3023
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
3012
3024
|
* @default ''
|
|
3013
3025
|
*/
|
|
3014
3026
|
message?: string;
|
|
3015
3027
|
/**
|
|
3016
|
-
*
|
|
3028
|
+
* Sets the earliest selectable time in `hh:mm` or `hh:mm:ss` format. Times before this are disabled in the picker.
|
|
3017
3029
|
*/
|
|
3018
3030
|
min?: string;
|
|
3019
3031
|
/**
|
|
3020
|
-
*
|
|
3032
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
3021
3033
|
*/
|
|
3022
3034
|
name: string;
|
|
3023
3035
|
/**
|
|
3024
|
-
*
|
|
3036
|
+
* Makes the field read-only — the value is displayed but cannot be changed. The value is still submitted with the form.
|
|
3025
3037
|
* @default false
|
|
3026
3038
|
*/
|
|
3027
3039
|
readOnly?: boolean;
|
|
3028
3040
|
/**
|
|
3029
|
-
*
|
|
3041
|
+
* Marks the field as required — form submission is blocked while no time is selected.
|
|
3030
3042
|
* @default false
|
|
3031
3043
|
*/
|
|
3032
3044
|
required?: boolean;
|
|
3033
3045
|
/**
|
|
3034
|
-
*
|
|
3046
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
3035
3047
|
* @default 'none'
|
|
3036
3048
|
*/
|
|
3037
3049
|
state?: InputTimeState;
|
|
3038
3050
|
/**
|
|
3039
|
-
*
|
|
3051
|
+
* Sets the stepping interval in seconds. Use `60` for minute-level selection, `1` to also expose seconds.
|
|
3040
3052
|
* @default 60
|
|
3041
3053
|
*/
|
|
3042
3054
|
step?: number;
|
|
3043
3055
|
/**
|
|
3044
|
-
*
|
|
3056
|
+
* Sets the current time value in `hh:mm` or `hh:mm:ss` format (e.g. `14:00`).
|
|
3045
3057
|
* @default ''
|
|
3046
3058
|
*/
|
|
3047
3059
|
value?: string | null;
|
|
@@ -3083,91 +3095,91 @@ declare class PInputTime extends BaseComponent implements ControlValueAccessor {
|
|
|
3083
3095
|
|
|
3084
3096
|
type PInputUrlProps = {
|
|
3085
3097
|
/**
|
|
3086
|
-
* Provides
|
|
3098
|
+
* Provides the browser with a URL autofill hint (e.g. `autocomplete='url'`).
|
|
3087
3099
|
*/
|
|
3088
3100
|
autoComplete?: string;
|
|
3089
3101
|
/**
|
|
3090
|
-
*
|
|
3102
|
+
* Reduces the input height and padding for a more compact layout.
|
|
3091
3103
|
* @default false
|
|
3092
3104
|
*/
|
|
3093
3105
|
compact?: boolean;
|
|
3094
3106
|
/**
|
|
3095
|
-
*
|
|
3107
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
3096
3108
|
* @default ''
|
|
3097
3109
|
*/
|
|
3098
3110
|
description?: string;
|
|
3099
3111
|
/**
|
|
3100
|
-
* Disables the input
|
|
3112
|
+
* Disables the field, preventing all input. The value is not submitted with the form.
|
|
3101
3113
|
* @default false
|
|
3102
3114
|
*/
|
|
3103
3115
|
disabled?: boolean;
|
|
3104
3116
|
/**
|
|
3105
|
-
*
|
|
3117
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
3106
3118
|
*/
|
|
3107
3119
|
form?: string;
|
|
3108
3120
|
/**
|
|
3109
|
-
*
|
|
3121
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3110
3122
|
* @default false
|
|
3111
3123
|
*/
|
|
3112
3124
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3113
3125
|
/**
|
|
3114
|
-
*
|
|
3126
|
+
* Shows a URL/link icon at the start of the field as a visual indicator.
|
|
3115
3127
|
* @default false
|
|
3116
3128
|
*/
|
|
3117
3129
|
indicator?: boolean;
|
|
3118
3130
|
/**
|
|
3119
|
-
*
|
|
3131
|
+
* Sets the visible label text displayed above the input field.
|
|
3120
3132
|
* @default ''
|
|
3121
3133
|
*/
|
|
3122
3134
|
label?: string;
|
|
3123
3135
|
/**
|
|
3124
|
-
* @experimental
|
|
3136
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
3125
3137
|
* @default false
|
|
3126
3138
|
*/
|
|
3127
3139
|
loading?: boolean;
|
|
3128
3140
|
/**
|
|
3129
|
-
*
|
|
3141
|
+
* Sets the maximum number of characters the user can enter.
|
|
3130
3142
|
*/
|
|
3131
3143
|
maxLength?: number;
|
|
3132
3144
|
/**
|
|
3133
|
-
*
|
|
3145
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
3134
3146
|
* @default ''
|
|
3135
3147
|
*/
|
|
3136
3148
|
message?: string;
|
|
3137
3149
|
/**
|
|
3138
|
-
*
|
|
3150
|
+
* Sets the minimum number of characters required for the field to be considered valid.
|
|
3139
3151
|
*/
|
|
3140
3152
|
minLength?: number;
|
|
3141
3153
|
/**
|
|
3142
|
-
*
|
|
3154
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
3143
3155
|
*/
|
|
3144
3156
|
name: string;
|
|
3145
3157
|
/**
|
|
3146
|
-
*
|
|
3158
|
+
* Sets a regular expression the entered value must match to be valid. Overrides the browser's default URL validation.
|
|
3147
3159
|
*/
|
|
3148
3160
|
pattern?: string;
|
|
3149
3161
|
/**
|
|
3150
|
-
*
|
|
3162
|
+
* Sets placeholder text shown inside the field when it is empty, such as an example URL.
|
|
3151
3163
|
* @default ''
|
|
3152
3164
|
*/
|
|
3153
3165
|
placeholder?: string;
|
|
3154
3166
|
/**
|
|
3155
|
-
*
|
|
3167
|
+
* Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
|
|
3156
3168
|
* @default false
|
|
3157
3169
|
*/
|
|
3158
3170
|
readOnly?: boolean;
|
|
3159
3171
|
/**
|
|
3160
|
-
*
|
|
3172
|
+
* Marks the field as required — form submission is blocked while this field is empty.
|
|
3161
3173
|
* @default false
|
|
3162
3174
|
*/
|
|
3163
3175
|
required?: boolean;
|
|
3164
3176
|
/**
|
|
3165
|
-
*
|
|
3177
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
3166
3178
|
* @default 'none'
|
|
3167
3179
|
*/
|
|
3168
3180
|
state?: InputUrlState;
|
|
3169
3181
|
/**
|
|
3170
|
-
*
|
|
3182
|
+
* Sets the current URL value. Must be an absolute URL (e.g. `https://porsche.com`) to pass browser validation.
|
|
3171
3183
|
* @default ''
|
|
3172
3184
|
*/
|
|
3173
3185
|
value?: string | null;
|
|
@@ -3211,82 +3223,82 @@ declare class PInputUrl extends BaseComponent implements ControlValueAccessor {
|
|
|
3211
3223
|
|
|
3212
3224
|
type PInputWeekProps = {
|
|
3213
3225
|
/**
|
|
3214
|
-
* Provides
|
|
3226
|
+
* Provides the browser with a week/year autofill hint.
|
|
3215
3227
|
*/
|
|
3216
3228
|
autoComplete?: string;
|
|
3217
3229
|
/**
|
|
3218
|
-
*
|
|
3230
|
+
* Reduces the input height and padding for a more compact layout.
|
|
3219
3231
|
* @default false
|
|
3220
3232
|
*/
|
|
3221
3233
|
compact?: boolean;
|
|
3222
3234
|
/**
|
|
3223
|
-
*
|
|
3235
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
3224
3236
|
* @default ''
|
|
3225
3237
|
*/
|
|
3226
3238
|
description?: string;
|
|
3227
3239
|
/**
|
|
3228
|
-
* Disables the
|
|
3240
|
+
* Disables the field, preventing week selection. The value is not submitted with the form.
|
|
3229
3241
|
* @default false
|
|
3230
3242
|
*/
|
|
3231
3243
|
disabled?: boolean;
|
|
3232
3244
|
/**
|
|
3233
|
-
*
|
|
3245
|
+
* Associates the field with a form element by its ID when the field is not nested directly inside it.
|
|
3234
3246
|
*/
|
|
3235
3247
|
form?: string;
|
|
3236
3248
|
/**
|
|
3237
|
-
*
|
|
3249
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3238
3250
|
* @default false
|
|
3239
3251
|
*/
|
|
3240
3252
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3241
3253
|
/**
|
|
3242
|
-
*
|
|
3254
|
+
* Sets the visible label text displayed above the input field.
|
|
3243
3255
|
* @default ''
|
|
3244
3256
|
*/
|
|
3245
3257
|
label?: string;
|
|
3246
3258
|
/**
|
|
3247
|
-
* @experimental
|
|
3259
|
+
* @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
|
|
3248
3260
|
* @default false
|
|
3249
3261
|
*/
|
|
3250
3262
|
loading?: boolean;
|
|
3251
3263
|
/**
|
|
3252
|
-
*
|
|
3264
|
+
* Sets the latest selectable week in YYYY-Www format. Weeks after this are disabled in the picker.
|
|
3253
3265
|
*/
|
|
3254
3266
|
max?: string;
|
|
3255
3267
|
/**
|
|
3256
|
-
*
|
|
3268
|
+
* Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
|
|
3257
3269
|
* @default ''
|
|
3258
3270
|
*/
|
|
3259
3271
|
message?: string;
|
|
3260
3272
|
/**
|
|
3261
|
-
*
|
|
3273
|
+
* Sets the earliest selectable week in YYYY-Www format. Weeks before this are disabled in the picker.
|
|
3262
3274
|
*/
|
|
3263
3275
|
min?: string;
|
|
3264
3276
|
/**
|
|
3265
|
-
*
|
|
3277
|
+
* Sets the name submitted with the form data to identify this field's value on the server.
|
|
3266
3278
|
*/
|
|
3267
3279
|
name: string;
|
|
3268
3280
|
/**
|
|
3269
|
-
*
|
|
3281
|
+
* Makes the field read-only — the value is displayed but cannot be changed. The value is still submitted with the form.
|
|
3270
3282
|
* @default false
|
|
3271
3283
|
*/
|
|
3272
3284
|
readOnly?: boolean;
|
|
3273
3285
|
/**
|
|
3274
|
-
*
|
|
3286
|
+
* Marks the field as required — form submission is blocked while no week is selected.
|
|
3275
3287
|
* @default false
|
|
3276
3288
|
*/
|
|
3277
3289
|
required?: boolean;
|
|
3278
3290
|
/**
|
|
3279
|
-
*
|
|
3291
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
3280
3292
|
* @default 'none'
|
|
3281
3293
|
*/
|
|
3282
3294
|
state?: InputWeekState;
|
|
3283
3295
|
/**
|
|
3284
|
-
*
|
|
3296
|
+
* Sets the stepping interval in weeks.
|
|
3285
3297
|
* @default 1
|
|
3286
3298
|
*/
|
|
3287
3299
|
step?: number;
|
|
3288
3300
|
/**
|
|
3289
|
-
*
|
|
3301
|
+
* Sets the current ISO week value in YYYY-Www format (e.g. `2025-W27`).
|
|
3290
3302
|
* @default ''
|
|
3291
3303
|
*/
|
|
3292
3304
|
value?: string | null;
|
|
@@ -3328,55 +3340,55 @@ declare class PInputWeek extends BaseComponent implements ControlValueAccessor {
|
|
|
3328
3340
|
|
|
3329
3341
|
type PMultiSelectProps = {
|
|
3330
3342
|
/**
|
|
3331
|
-
*
|
|
3343
|
+
* Reduces the control height and padding for a more compact layout.
|
|
3332
3344
|
* @default false
|
|
3333
3345
|
*/
|
|
3334
3346
|
compact?: boolean;
|
|
3335
3347
|
/**
|
|
3336
|
-
*
|
|
3348
|
+
* Sets a supplementary description displayed below the label to provide additional context.
|
|
3337
3349
|
* @default ''
|
|
3338
3350
|
*/
|
|
3339
3351
|
description?: string;
|
|
3340
3352
|
/**
|
|
3341
|
-
* Disables the multi-select
|
|
3353
|
+
* Disables the multi-select, preventing all interaction. Selected values are not submitted with the form.
|
|
3342
3354
|
* @default false
|
|
3343
3355
|
*/
|
|
3344
3356
|
disabled?: boolean;
|
|
3345
3357
|
/**
|
|
3346
|
-
*
|
|
3358
|
+
* Controls whether the dropdown opens upward (`up`) or downward (`down`), or decides automatically (`auto`).
|
|
3347
3359
|
* @default 'auto'
|
|
3348
3360
|
*/
|
|
3349
3361
|
dropdownDirection?: MultiSelectDropdownDirection;
|
|
3350
3362
|
/**
|
|
3351
|
-
*
|
|
3363
|
+
* Associates the multi-select with a form element by its ID when not directly nested inside it.
|
|
3352
3364
|
*/
|
|
3353
3365
|
form?: string;
|
|
3354
3366
|
/**
|
|
3355
|
-
*
|
|
3367
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3356
3368
|
* @default false
|
|
3357
3369
|
*/
|
|
3358
3370
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3359
3371
|
/**
|
|
3360
|
-
*
|
|
3372
|
+
* Sets the visible label text displayed above the multi-select control.
|
|
3361
3373
|
* @default ''
|
|
3362
3374
|
*/
|
|
3363
3375
|
label?: string;
|
|
3364
3376
|
/**
|
|
3365
|
-
*
|
|
3377
|
+
* Sets the validation feedback message displayed below the control when `state` is `success` or `error`.
|
|
3366
3378
|
* @default ''
|
|
3367
3379
|
*/
|
|
3368
3380
|
message?: string;
|
|
3369
3381
|
/**
|
|
3370
|
-
*
|
|
3382
|
+
* Sets the name submitted with the form data to identify the selected values on the server.
|
|
3371
3383
|
*/
|
|
3372
3384
|
name: string;
|
|
3373
3385
|
/**
|
|
3374
|
-
*
|
|
3386
|
+
* Marks the multi-select as required — form submission is blocked unless at least one option is selected.
|
|
3375
3387
|
* @default false
|
|
3376
3388
|
*/
|
|
3377
3389
|
required?: boolean;
|
|
3378
3390
|
/**
|
|
3379
|
-
*
|
|
3391
|
+
* Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
|
|
3380
3392
|
* @default 'none'
|
|
3381
3393
|
*/
|
|
3382
3394
|
state?: MultiSelectState;
|
|
@@ -3418,70 +3430,70 @@ declare class PMultiSelect extends BaseComponent implements ControlValueAccessor
|
|
|
3418
3430
|
|
|
3419
3431
|
type PPinCodeProps = {
|
|
3420
3432
|
/**
|
|
3421
|
-
*
|
|
3433
|
+
* Reduces the pin code field height and spacing for use in dense layouts where vertical space is limited.
|
|
3422
3434
|
* @default false
|
|
3423
3435
|
*/
|
|
3424
3436
|
compact?: boolean;
|
|
3425
3437
|
/**
|
|
3426
|
-
*
|
|
3438
|
+
* Sets a supplementary description displayed below the label to give users additional guidance about the pin code.
|
|
3427
3439
|
* @default ''
|
|
3428
3440
|
*/
|
|
3429
3441
|
description?: string;
|
|
3430
3442
|
/**
|
|
3431
|
-
*
|
|
3443
|
+
* Prevents user interaction with all pin code fields and blocks events while the component is disabled.
|
|
3432
3444
|
* @default false
|
|
3433
3445
|
*/
|
|
3434
3446
|
disabled?: boolean;
|
|
3435
3447
|
/**
|
|
3436
|
-
*
|
|
3448
|
+
* Associates the pin code with a form element by its ID when it is not a direct descendant of that form.
|
|
3437
3449
|
*/
|
|
3438
3450
|
form?: string;
|
|
3439
3451
|
/**
|
|
3440
|
-
*
|
|
3452
|
+
* Hides the visible label and description while keeping them accessible to screen readers. Supports responsive breakpoint values.
|
|
3441
3453
|
* @default false
|
|
3442
3454
|
*/
|
|
3443
3455
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3444
3456
|
/**
|
|
3445
|
-
*
|
|
3457
|
+
* Sets the visible label text displayed above the pin code fields to identify their purpose.
|
|
3446
3458
|
* @default ''
|
|
3447
3459
|
*/
|
|
3448
3460
|
label?: string;
|
|
3449
3461
|
/**
|
|
3450
|
-
*
|
|
3462
|
+
* Sets the number of individual input fields rendered, determining how many characters the pin code consists of.
|
|
3451
3463
|
* @default 4
|
|
3452
3464
|
*/
|
|
3453
3465
|
length?: PinCodeLength;
|
|
3454
3466
|
/**
|
|
3455
|
-
* Disables the
|
|
3467
|
+
* Disables the pin code fields and shows a loading spinner to indicate an ongoing background operation.
|
|
3456
3468
|
* @default false
|
|
3457
3469
|
*/
|
|
3458
3470
|
loading?: boolean;
|
|
3459
3471
|
/**
|
|
3460
|
-
*
|
|
3472
|
+
* Sets the validation feedback message displayed below the pin code when `state` is `success` or `error`.
|
|
3461
3473
|
* @default ''
|
|
3462
3474
|
*/
|
|
3463
3475
|
message?: string;
|
|
3464
3476
|
/**
|
|
3465
|
-
*
|
|
3477
|
+
* Sets the name of the control submitted with the form data to identify the pin code value on the server.
|
|
3466
3478
|
*/
|
|
3467
3479
|
name?: string;
|
|
3468
3480
|
/**
|
|
3469
|
-
* Marks the
|
|
3481
|
+
* Marks the pin code as required so the form cannot be submitted until all fields are filled.
|
|
3470
3482
|
* @default false
|
|
3471
3483
|
*/
|
|
3472
3484
|
required?: boolean;
|
|
3473
3485
|
/**
|
|
3474
|
-
*
|
|
3486
|
+
* Sets the validation state of the pin code, which controls its visual appearance and feedback message style (`none`, `success`, `error`).
|
|
3475
3487
|
* @default 'none'
|
|
3476
3488
|
*/
|
|
3477
3489
|
state?: PinCodeState;
|
|
3478
3490
|
/**
|
|
3479
|
-
*
|
|
3491
|
+
* Controls whether the individual input fields mask their content as password dots (`password`) or show digits (`number`).
|
|
3480
3492
|
* @default 'number'
|
|
3481
3493
|
*/
|
|
3482
3494
|
type?: PinCodeType;
|
|
3483
3495
|
/**
|
|
3484
|
-
* Sets the
|
|
3496
|
+
* Sets the current concatenated value of all pin code fields and allows setting the initial value.
|
|
3485
3497
|
* @default ''
|
|
3486
3498
|
*/
|
|
3487
3499
|
value?: string;
|
|
@@ -3519,65 +3531,65 @@ declare class PPinCode extends BaseComponent implements ControlValueAccessor {
|
|
|
3519
3531
|
|
|
3520
3532
|
type PRadioGroupProps = {
|
|
3521
3533
|
/**
|
|
3522
|
-
*
|
|
3534
|
+
* Reduces the spacing between radio options for use in dense layouts where vertical space is limited.
|
|
3523
3535
|
* @default false
|
|
3524
3536
|
*/
|
|
3525
3537
|
compact?: boolean;
|
|
3526
3538
|
/**
|
|
3527
|
-
*
|
|
3539
|
+
* Sets a supplementary description displayed below the label to give users additional guidance about the radio group.
|
|
3528
3540
|
* @default ''
|
|
3529
3541
|
*/
|
|
3530
3542
|
description?: string;
|
|
3531
3543
|
/**
|
|
3532
|
-
*
|
|
3544
|
+
* Sets the layout direction of the radio options. Use `column` to stack them vertically or `row` to arrange them horizontally. Supports responsive breakpoint values.
|
|
3533
3545
|
* @default 'column'
|
|
3534
3546
|
*/
|
|
3535
3547
|
direction?: BreakpointCustomizable<RadioGroupDirection>;
|
|
3536
3548
|
/**
|
|
3537
|
-
* Disables
|
|
3549
|
+
* Disables all radio options in the group, preventing selection and excluding the value from form submissions.
|
|
3538
3550
|
* @default false
|
|
3539
3551
|
*/
|
|
3540
3552
|
disabled?: boolean;
|
|
3541
3553
|
/**
|
|
3542
|
-
*
|
|
3554
|
+
* Associates the radio group with a form element by its ID when the group is not a direct descendant of that form.
|
|
3543
3555
|
*/
|
|
3544
3556
|
form?: string;
|
|
3545
3557
|
/**
|
|
3546
|
-
*
|
|
3558
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3547
3559
|
* @default false
|
|
3548
3560
|
*/
|
|
3549
3561
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3550
3562
|
/**
|
|
3551
|
-
*
|
|
3563
|
+
* Sets the visible label text displayed above the radio group to identify the group's purpose.
|
|
3552
3564
|
* @default ''
|
|
3553
3565
|
*/
|
|
3554
3566
|
label?: string;
|
|
3555
3567
|
/**
|
|
3556
|
-
* @experimental
|
|
3568
|
+
* @experimental Disables all radio options and shows a spinner to indicate a background loading operation.
|
|
3557
3569
|
* @default false
|
|
3558
3570
|
*/
|
|
3559
3571
|
loading?: boolean;
|
|
3560
3572
|
/**
|
|
3561
|
-
*
|
|
3573
|
+
* Sets the validation feedback message displayed below the radio group when `state` is `success` or `error`.
|
|
3562
3574
|
* @default ''
|
|
3563
3575
|
*/
|
|
3564
3576
|
message?: string;
|
|
3565
3577
|
/**
|
|
3566
|
-
*
|
|
3578
|
+
* Sets the shared name attribute for all radio buttons in the group, grouping them for mutually exclusive selection.
|
|
3567
3579
|
*/
|
|
3568
3580
|
name: string;
|
|
3569
3581
|
/**
|
|
3570
|
-
*
|
|
3582
|
+
* Marks the radio group as required so the form cannot be submitted until one option is selected.
|
|
3571
3583
|
* @default false
|
|
3572
3584
|
*/
|
|
3573
3585
|
required?: boolean;
|
|
3574
3586
|
/**
|
|
3575
|
-
*
|
|
3587
|
+
* Sets the validation state of the radio group, controlling its visual appearance and feedback message style (`none`, `success`, `error`).
|
|
3576
3588
|
* @default 'none'
|
|
3577
3589
|
*/
|
|
3578
3590
|
state?: RadioGroupState;
|
|
3579
3591
|
/**
|
|
3580
|
-
*
|
|
3592
|
+
* Sets the currently selected value that pre-selects the matching radio option and reflects user changes.
|
|
3581
3593
|
* @default ''
|
|
3582
3594
|
*/
|
|
3583
3595
|
value?: string;
|
|
@@ -3614,65 +3626,65 @@ declare class PRadioGroup extends BaseComponent implements ControlValueAccessor
|
|
|
3614
3626
|
|
|
3615
3627
|
type PSegmentedControlProps = {
|
|
3616
3628
|
/**
|
|
3617
|
-
* Sets the
|
|
3629
|
+
* Sets the number of equal-width columns for the item layout. Use `auto` to distribute items based on their content width. Supports responsive breakpoint values.
|
|
3618
3630
|
* @default 'auto'
|
|
3619
3631
|
*/
|
|
3620
3632
|
columns?: BreakpointCustomizable<SegmentedControlColumns>;
|
|
3621
3633
|
/**
|
|
3622
|
-
*
|
|
3634
|
+
* Reduces the item height and spacing for use in dense layouts where vertical space is limited.
|
|
3623
3635
|
* @default false
|
|
3624
3636
|
*/
|
|
3625
3637
|
compact?: boolean;
|
|
3626
3638
|
/**
|
|
3627
|
-
*
|
|
3639
|
+
* Sets a supplementary description displayed below the label to give users additional context about the segmented control.
|
|
3628
3640
|
* @default ''
|
|
3629
3641
|
*/
|
|
3630
3642
|
description?: string;
|
|
3631
3643
|
/**
|
|
3632
|
-
*
|
|
3644
|
+
* Prevents user interaction with all items in the segmented control and excludes the value from form submissions.
|
|
3633
3645
|
* @default false
|
|
3634
3646
|
*/
|
|
3635
3647
|
disabled?: boolean;
|
|
3636
3648
|
/**
|
|
3637
|
-
*
|
|
3649
|
+
* Associates the segmented control with a form element by its ID when it is not a direct descendant of that form.
|
|
3638
3650
|
*/
|
|
3639
3651
|
form?: string;
|
|
3640
3652
|
/**
|
|
3641
|
-
*
|
|
3653
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3642
3654
|
* @default false
|
|
3643
3655
|
*/
|
|
3644
3656
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3645
3657
|
/**
|
|
3646
|
-
*
|
|
3658
|
+
* Sets the visible label text displayed above the segmented control to describe the group of options.
|
|
3647
3659
|
* @default ''
|
|
3648
3660
|
*/
|
|
3649
3661
|
label?: string;
|
|
3650
3662
|
/**
|
|
3651
|
-
*
|
|
3663
|
+
* Sets the validation feedback message displayed below the segmented control when `state` is `success` or `error`.
|
|
3652
3664
|
* @default ''
|
|
3653
3665
|
*/
|
|
3654
3666
|
message?: string;
|
|
3655
3667
|
/**
|
|
3656
|
-
*
|
|
3668
|
+
* Sets the name of the control submitted with the form data to identify the selected value on the server.
|
|
3657
3669
|
*/
|
|
3658
3670
|
name?: string;
|
|
3659
3671
|
/**
|
|
3660
|
-
*
|
|
3672
|
+
* Prevents items from wrapping to new rows and renders them in a single horizontally scrollable row instead.
|
|
3661
3673
|
* @default false
|
|
3662
3674
|
*/
|
|
3663
3675
|
noWrap?: boolean;
|
|
3664
3676
|
/**
|
|
3665
|
-
*
|
|
3677
|
+
* Marks the segmented control as required so the form cannot be submitted until one option is selected.
|
|
3666
3678
|
* @default false
|
|
3667
3679
|
*/
|
|
3668
3680
|
required?: boolean;
|
|
3669
3681
|
/**
|
|
3670
|
-
*
|
|
3682
|
+
* Sets the validation state of the segmented control, controlling its visual appearance and feedback message style (`none`, `success`, `error`).
|
|
3671
3683
|
* @default 'none'
|
|
3672
3684
|
*/
|
|
3673
3685
|
state?: SegmentedControlState;
|
|
3674
3686
|
/**
|
|
3675
|
-
* Sets the
|
|
3687
|
+
* Sets the currently selected item's value and pre-selects the matching option when the component renders.
|
|
3676
3688
|
*/
|
|
3677
3689
|
value?: string | number;
|
|
3678
3690
|
};
|
|
@@ -3708,60 +3720,60 @@ declare class PSegmentedControl extends BaseComponent implements ControlValueAcc
|
|
|
3708
3720
|
|
|
3709
3721
|
type PSelectProps = {
|
|
3710
3722
|
/**
|
|
3711
|
-
*
|
|
3723
|
+
* Reduces the control height and padding for use in dense layouts where vertical space is limited.
|
|
3712
3724
|
* @default false
|
|
3713
3725
|
*/
|
|
3714
3726
|
compact?: boolean;
|
|
3715
3727
|
/**
|
|
3716
|
-
*
|
|
3728
|
+
* Sets a supplementary description displayed below the label to give users additional guidance about the select.
|
|
3717
3729
|
* @default ''
|
|
3718
3730
|
*/
|
|
3719
3731
|
description?: string;
|
|
3720
3732
|
/**
|
|
3721
|
-
*
|
|
3733
|
+
* Prevents user interaction with the select and excludes its value from form submissions.
|
|
3722
3734
|
* @default false
|
|
3723
3735
|
*/
|
|
3724
3736
|
disabled?: boolean;
|
|
3725
3737
|
/**
|
|
3726
|
-
*
|
|
3738
|
+
* Controls whether the dropdown list opens upward (`up`) or downward (`down`), or determines the direction automatically (`auto`).
|
|
3727
3739
|
* @default 'auto'
|
|
3728
3740
|
*/
|
|
3729
3741
|
dropdownDirection?: SelectDropdownDirection;
|
|
3730
3742
|
/**
|
|
3731
|
-
* Shows
|
|
3743
|
+
* Shows a text input inside the dropdown that filters the visible options as the user types. Ignored when the `filter` slot is used.
|
|
3732
3744
|
* @default false
|
|
3733
3745
|
*/
|
|
3734
3746
|
filter?: boolean;
|
|
3735
3747
|
/**
|
|
3736
|
-
*
|
|
3748
|
+
* Associates the select with a form element by its ID when it is not a direct descendant of that form.
|
|
3737
3749
|
*/
|
|
3738
3750
|
form?: string;
|
|
3739
3751
|
/**
|
|
3740
|
-
*
|
|
3752
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3741
3753
|
* @default false
|
|
3742
3754
|
*/
|
|
3743
3755
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3744
3756
|
/**
|
|
3745
|
-
*
|
|
3757
|
+
* Sets the visible label text displayed above the select control to identify its purpose.
|
|
3746
3758
|
* @default ''
|
|
3747
3759
|
*/
|
|
3748
3760
|
label?: string;
|
|
3749
3761
|
/**
|
|
3750
|
-
*
|
|
3762
|
+
* Sets the validation feedback message displayed below the select when `state` is `success` or `error`.
|
|
3751
3763
|
* @default ''
|
|
3752
3764
|
*/
|
|
3753
3765
|
message?: string;
|
|
3754
3766
|
/**
|
|
3755
|
-
*
|
|
3767
|
+
* Sets the name of the control submitted with the form data, identifying the selected value on the server.
|
|
3756
3768
|
*/
|
|
3757
3769
|
name: string;
|
|
3758
3770
|
/**
|
|
3759
|
-
*
|
|
3771
|
+
* Marks the select as required so the form cannot be submitted unless a non-empty option is selected.
|
|
3760
3772
|
* @default false
|
|
3761
3773
|
*/
|
|
3762
3774
|
required?: boolean;
|
|
3763
3775
|
/**
|
|
3764
|
-
*
|
|
3776
|
+
* Sets the validation state of the select, which controls its visual appearance and feedback message style (`none`, `success`, `error`).
|
|
3765
3777
|
* @default 'none'
|
|
3766
3778
|
*/
|
|
3767
3779
|
state?: SelectState;
|
|
@@ -3809,101 +3821,101 @@ declare class PTableBody extends BaseComponent {
|
|
|
3809
3821
|
|
|
3810
3822
|
type PTextareaProps = {
|
|
3811
3823
|
/**
|
|
3812
|
-
* Provides
|
|
3824
|
+
* Provides the browser with a hint to enable text autofill suggestions for the textarea (e.g. `autocomplete='on'`).
|
|
3813
3825
|
*/
|
|
3814
3826
|
autoComplete?: string;
|
|
3815
3827
|
/**
|
|
3816
|
-
*
|
|
3828
|
+
* Reduces the textarea's initial height and padding for use in dense layouts where vertical space is limited.
|
|
3817
3829
|
* @default false
|
|
3818
3830
|
*/
|
|
3819
3831
|
compact?: boolean;
|
|
3820
3832
|
/**
|
|
3821
|
-
*
|
|
3833
|
+
* Shows a live character counter below the textarea indicating how many characters the user has typed relative to `maxLength`.
|
|
3822
3834
|
* @default false
|
|
3823
3835
|
*/
|
|
3824
3836
|
counter?: boolean;
|
|
3825
3837
|
/**
|
|
3826
|
-
*
|
|
3838
|
+
* Sets a supplementary description displayed below the label to give users additional guidance about the textarea.
|
|
3827
3839
|
* @default ''
|
|
3828
3840
|
*/
|
|
3829
3841
|
description?: string;
|
|
3830
3842
|
/**
|
|
3831
|
-
*
|
|
3843
|
+
* Prevents user interaction with the textarea and excludes its value from form submissions.
|
|
3832
3844
|
* @default false
|
|
3833
3845
|
*/
|
|
3834
3846
|
disabled?: boolean;
|
|
3835
3847
|
/**
|
|
3836
|
-
*
|
|
3848
|
+
* Associates the textarea with a form element by its ID when the textarea is not a direct descendant of that form.
|
|
3837
3849
|
*/
|
|
3838
3850
|
form?: string;
|
|
3839
3851
|
/**
|
|
3840
|
-
*
|
|
3852
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
3841
3853
|
* @default false
|
|
3842
3854
|
*/
|
|
3843
3855
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
3844
3856
|
/**
|
|
3845
|
-
*
|
|
3857
|
+
* Sets the visible label text displayed above the textarea to identify its purpose.
|
|
3846
3858
|
* @default ''
|
|
3847
3859
|
*/
|
|
3848
3860
|
label?: string;
|
|
3849
3861
|
/**
|
|
3850
|
-
*
|
|
3862
|
+
* Sets the maximum number of characters the user is allowed to enter into the textarea.
|
|
3851
3863
|
*/
|
|
3852
3864
|
maxLength?: number;
|
|
3853
3865
|
/**
|
|
3854
|
-
*
|
|
3866
|
+
* Sets the validation feedback message displayed below the textarea when `state` is `success` or `error`.
|
|
3855
3867
|
* @default ''
|
|
3856
3868
|
*/
|
|
3857
3869
|
message?: string;
|
|
3858
3870
|
/**
|
|
3859
|
-
*
|
|
3871
|
+
* Sets the minimum number of characters required for the textarea's value to pass constraint validation.
|
|
3860
3872
|
*/
|
|
3861
3873
|
minLength?: number;
|
|
3862
3874
|
/**
|
|
3863
|
-
*
|
|
3875
|
+
* Sets the name of the textarea submitted with the form data to identify this field's value on the server.
|
|
3864
3876
|
*/
|
|
3865
3877
|
name: string;
|
|
3866
3878
|
/**
|
|
3867
|
-
*
|
|
3879
|
+
* Sets placeholder text displayed inside the textarea when it is empty to hint at the expected content format.
|
|
3868
3880
|
* @default ''
|
|
3869
3881
|
*/
|
|
3870
3882
|
placeholder?: string;
|
|
3871
3883
|
/**
|
|
3872
|
-
*
|
|
3884
|
+
* Makes the textarea read-only so users cannot modify the value, while still including it in form submissions.
|
|
3873
3885
|
* @default false
|
|
3874
3886
|
*/
|
|
3875
3887
|
readOnly?: boolean;
|
|
3876
3888
|
/**
|
|
3877
|
-
*
|
|
3889
|
+
* Marks the textarea as required so the form cannot be submitted while this field is empty.
|
|
3878
3890
|
* @default false
|
|
3879
3891
|
*/
|
|
3880
3892
|
required?: boolean;
|
|
3881
3893
|
/**
|
|
3882
|
-
* Controls whether the textarea
|
|
3894
|
+
* Controls whether and in which direction the user can resize the textarea (`horizontal`, `vertical`, `both`, or `none`).
|
|
3883
3895
|
* @default 'vertical'
|
|
3884
3896
|
*/
|
|
3885
3897
|
resize?: TextareaResize;
|
|
3886
3898
|
/**
|
|
3887
|
-
*
|
|
3899
|
+
* Sets the initial visible height of the textarea in lines of text. Has no effect when the `--p-textarea-field-sizing` CSS variable is set to `content`.
|
|
3888
3900
|
* @default 7
|
|
3889
3901
|
*/
|
|
3890
3902
|
rows?: number;
|
|
3891
3903
|
/**
|
|
3892
|
-
*
|
|
3904
|
+
* Controls whether the browser's built-in spell-checking and grammar checking is enabled for the textarea content.
|
|
3893
3905
|
*/
|
|
3894
3906
|
spellCheck?: boolean;
|
|
3895
3907
|
/**
|
|
3896
|
-
*
|
|
3908
|
+
* Sets the validation state of the textarea, which controls its visual appearance and feedback message style (`none`, `success`, `error`).
|
|
3897
3909
|
* @default 'none'
|
|
3898
3910
|
*/
|
|
3899
3911
|
state?: TextareaState;
|
|
3900
3912
|
/**
|
|
3901
|
-
*
|
|
3913
|
+
* Sets the current multi-line text value of the textarea and reflects any changes made by the user.
|
|
3902
3914
|
* @default ''
|
|
3903
3915
|
*/
|
|
3904
3916
|
value?: string | null;
|
|
3905
3917
|
/**
|
|
3906
|
-
*
|
|
3918
|
+
* Controls how the submitted text wraps in the form data: `soft` wraps only visually, `hard` inserts line breaks at the textarea width.
|
|
3907
3919
|
* @default 'soft'
|
|
3908
3920
|
*/
|
|
3909
3921
|
wrap?: TextareaWrap;
|
|
@@ -3949,17 +3961,17 @@ declare class PTextarea extends BaseComponent implements ControlValueAccessor {
|
|
|
3949
3961
|
|
|
3950
3962
|
type PAccordionProps = {
|
|
3951
3963
|
/**
|
|
3952
|
-
*
|
|
3964
|
+
* Positions the expand/collapse marker icon at the start or end of the summary section.
|
|
3953
3965
|
* @default 'end'
|
|
3954
3966
|
*/
|
|
3955
3967
|
alignMarker?: AccordionAlignMarker;
|
|
3956
3968
|
/**
|
|
3957
|
-
*
|
|
3969
|
+
* Sets the background color of the accordion panel. Use `frosted` only when placed on images, videos, or gradients.
|
|
3958
3970
|
* @default 'none'
|
|
3959
3971
|
*/
|
|
3960
3972
|
background?: AccordionBackground;
|
|
3961
3973
|
/**
|
|
3962
|
-
*
|
|
3974
|
+
* Reduces padding and spacing for a more compact layout, useful in space-constrained interfaces.
|
|
3963
3975
|
*/
|
|
3964
3976
|
compact?: boolean;
|
|
3965
3977
|
/**
|
|
@@ -4029,37 +4041,37 @@ declare class PAiTag extends BaseComponent {
|
|
|
4029
4041
|
|
|
4030
4042
|
type PBannerProps = {
|
|
4031
4043
|
/**
|
|
4032
|
-
* Sets the description text
|
|
4044
|
+
* Sets the supporting description text shown below the heading.
|
|
4033
4045
|
* @default ''
|
|
4034
4046
|
*/
|
|
4035
4047
|
description?: string;
|
|
4036
4048
|
/**
|
|
4037
|
-
* Shows a dismiss button
|
|
4049
|
+
* Shows a dismiss button so the user can manually close the banner.
|
|
4038
4050
|
* @default true
|
|
4039
4051
|
*/
|
|
4040
4052
|
dismissButton?: boolean;
|
|
4041
4053
|
/**
|
|
4042
|
-
* Sets the heading text of the banner.
|
|
4054
|
+
* Sets the heading text displayed at the top of the banner.
|
|
4043
4055
|
* @default ''
|
|
4044
4056
|
*/
|
|
4045
4057
|
heading?: string;
|
|
4046
4058
|
/**
|
|
4047
|
-
* Sets the heading tag
|
|
4059
|
+
* Sets the HTML heading tag (e.g. h2, h3) to maintain correct document structure for the heading.
|
|
4048
4060
|
* @default 'h5'
|
|
4049
4061
|
*/
|
|
4050
4062
|
headingTag?: BannerHeadingTag;
|
|
4051
4063
|
/**
|
|
4052
|
-
* Controls whether the banner is
|
|
4064
|
+
* Controls whether the banner is visible. Set to `true` to show it and `false` to hide it.
|
|
4053
4065
|
* @default false
|
|
4054
4066
|
*/
|
|
4055
4067
|
open: boolean;
|
|
4056
4068
|
/**
|
|
4057
|
-
* Sets the position of the banner.
|
|
4069
|
+
* Sets the position of the banner on screen — `top` or `bottom`. Supports responsive breakpoint values.
|
|
4058
4070
|
* @default { base: 'bottom', s: 'top' }
|
|
4059
4071
|
*/
|
|
4060
4072
|
position?: BreakpointCustomizable<BannerPosition>;
|
|
4061
4073
|
/**
|
|
4062
|
-
*
|
|
4074
|
+
* Sets the visual state of the banner — controls the icon and color scheme (`info`, `warning`, `error`, `success`).
|
|
4063
4075
|
* @default 'info'
|
|
4064
4076
|
*/
|
|
4065
4077
|
state?: BannerState;
|
|
@@ -4079,57 +4091,57 @@ declare class PBanner extends BaseComponent {
|
|
|
4079
4091
|
|
|
4080
4092
|
type PButtonProps = {
|
|
4081
4093
|
/**
|
|
4082
|
-
* Sets ARIA attributes.
|
|
4094
|
+
* Sets ARIA attributes on the button to improve accessibility for screen readers.
|
|
4083
4095
|
*/
|
|
4084
4096
|
aria?: SelectedAriaAttributes<ButtonAriaAttribute>;
|
|
4085
4097
|
/**
|
|
4086
|
-
*
|
|
4098
|
+
* Reduces the button's height and padding for denser layouts. Supports responsive breakpoint values.
|
|
4087
4099
|
* @default false
|
|
4088
4100
|
*/
|
|
4089
4101
|
compact?: BreakpointCustomizable<boolean>;
|
|
4090
4102
|
/**
|
|
4091
|
-
* Disables the button
|
|
4103
|
+
* Disables the button, preventing all interaction and blocking events.
|
|
4092
4104
|
* @default false
|
|
4093
4105
|
*/
|
|
4094
4106
|
disabled?: boolean;
|
|
4095
4107
|
/**
|
|
4096
|
-
*
|
|
4108
|
+
* Associates the button with a form element by its ID, so it can submit or reset that form even when placed outside of it.
|
|
4097
4109
|
*/
|
|
4098
4110
|
form?: string;
|
|
4099
4111
|
/**
|
|
4100
|
-
*
|
|
4112
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
4101
4113
|
* @default false
|
|
4102
4114
|
*/
|
|
4103
4115
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
4104
4116
|
/**
|
|
4105
|
-
*
|
|
4117
|
+
* Sets the icon displayed inside the button. Use `none` to show no icon.
|
|
4106
4118
|
* @default 'none'
|
|
4107
4119
|
*/
|
|
4108
4120
|
icon?: ButtonIcon;
|
|
4109
4121
|
/**
|
|
4110
|
-
*
|
|
4122
|
+
* Sets a path to a custom SVG icon, used instead of the built-in icon set.
|
|
4111
4123
|
*/
|
|
4112
4124
|
iconSource?: string;
|
|
4113
4125
|
/**
|
|
4114
|
-
* Disables the button and
|
|
4126
|
+
* Disables the button and replaces its content with a loading spinner to indicate an ongoing operation.
|
|
4115
4127
|
* @default false
|
|
4116
4128
|
*/
|
|
4117
4129
|
loading?: boolean;
|
|
4118
4130
|
/**
|
|
4119
|
-
*
|
|
4131
|
+
* Sets the name submitted with the form data when this button triggers form submission.
|
|
4120
4132
|
*/
|
|
4121
4133
|
name?: string;
|
|
4122
4134
|
/**
|
|
4123
|
-
*
|
|
4135
|
+
* Sets the button's HTML type — `submit` sends the form, `reset` clears it, `button` performs no default action.
|
|
4124
4136
|
* @default 'submit'
|
|
4125
4137
|
*/
|
|
4126
4138
|
type?: ButtonType;
|
|
4127
4139
|
/**
|
|
4128
|
-
*
|
|
4140
|
+
* Sets the value submitted with the form data when this button triggers form submission, paired with `name`.
|
|
4129
4141
|
*/
|
|
4130
4142
|
value?: string;
|
|
4131
4143
|
/**
|
|
4132
|
-
*
|
|
4144
|
+
* Sets the visual style variant of the button (e.g. `primary`, `secondary`, `tertiary`).
|
|
4133
4145
|
* @default 'primary'
|
|
4134
4146
|
*/
|
|
4135
4147
|
variant?: ButtonVariant;
|
|
@@ -4153,78 +4165,78 @@ declare class PButton extends BaseComponent {
|
|
|
4153
4165
|
|
|
4154
4166
|
type PButtonPureProps = {
|
|
4155
4167
|
/**
|
|
4156
|
-
*
|
|
4168
|
+
* Visually marks the button as the currently active or selected item, useful for navigation and toggle patterns.
|
|
4157
4169
|
* @default false
|
|
4158
4170
|
*/
|
|
4159
4171
|
active?: boolean;
|
|
4160
4172
|
/**
|
|
4161
|
-
*
|
|
4173
|
+
* Sets the label position relative to the icon — `start` places it before, `end` places it after. Supports responsive breakpoint values.
|
|
4162
4174
|
* @default 'end'
|
|
4163
4175
|
*/
|
|
4164
4176
|
alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;
|
|
4165
4177
|
/**
|
|
4166
|
-
* Sets ARIA attributes.
|
|
4178
|
+
* Sets ARIA attributes on the button to improve accessibility for screen readers.
|
|
4167
4179
|
*/
|
|
4168
4180
|
aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;
|
|
4169
4181
|
/**
|
|
4170
|
-
*
|
|
4182
|
+
* Sets the foreground color of the button's icon and label text.
|
|
4171
4183
|
* @default 'primary'
|
|
4172
4184
|
*/
|
|
4173
4185
|
color?: ButtonPureColor;
|
|
4174
4186
|
/**
|
|
4175
|
-
* Disables the button
|
|
4187
|
+
* Disables the button, preventing all interaction and blocking events.
|
|
4176
4188
|
* @default false
|
|
4177
4189
|
*/
|
|
4178
4190
|
disabled?: boolean;
|
|
4179
4191
|
/**
|
|
4180
|
-
*
|
|
4192
|
+
* Associates the button with a form element by its ID, so it can submit or reset that form even when placed outside of it.
|
|
4181
4193
|
*/
|
|
4182
4194
|
form?: string;
|
|
4183
4195
|
/**
|
|
4184
|
-
*
|
|
4196
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
4185
4197
|
* @default false
|
|
4186
4198
|
*/
|
|
4187
4199
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
4188
4200
|
/**
|
|
4189
|
-
*
|
|
4201
|
+
* Sets the icon displayed next to the label.
|
|
4190
4202
|
* @default 'arrow-right'
|
|
4191
4203
|
*/
|
|
4192
4204
|
icon?: ButtonPureIcon;
|
|
4193
4205
|
/**
|
|
4194
|
-
*
|
|
4206
|
+
* Sets a path to a custom SVG icon, used instead of the built-in icon set.
|
|
4195
4207
|
*/
|
|
4196
4208
|
iconSource?: string;
|
|
4197
4209
|
/**
|
|
4198
|
-
* Disables the button and
|
|
4210
|
+
* Disables the button and replaces its icon with a loading spinner to indicate an ongoing operation.
|
|
4199
4211
|
* @default false
|
|
4200
4212
|
*/
|
|
4201
4213
|
loading?: boolean;
|
|
4202
4214
|
/**
|
|
4203
|
-
*
|
|
4215
|
+
* Sets the name submitted with the form data when this button triggers form submission.
|
|
4204
4216
|
*/
|
|
4205
4217
|
name?: string;
|
|
4206
4218
|
/**
|
|
4207
|
-
*
|
|
4219
|
+
* Sets the font size of the button label. Supports responsive breakpoint values.
|
|
4208
4220
|
* @default 'sm'
|
|
4209
4221
|
*/
|
|
4210
4222
|
size?: BreakpointCustomizable<ButtonPureSize>;
|
|
4211
4223
|
/**
|
|
4212
|
-
*
|
|
4224
|
+
* Expands the space between icon and label to fill the full container width. Supports responsive breakpoint values.
|
|
4213
4225
|
* @default false
|
|
4214
4226
|
*/
|
|
4215
4227
|
stretch?: BreakpointCustomizable<boolean>;
|
|
4216
4228
|
/**
|
|
4217
|
-
*
|
|
4229
|
+
* Sets the button's HTML type — `submit` sends the form, `reset` clears it, `button` performs no default action.
|
|
4218
4230
|
* @default 'submit'
|
|
4219
4231
|
*/
|
|
4220
4232
|
type?: ButtonPureType;
|
|
4221
4233
|
/**
|
|
4222
|
-
*
|
|
4234
|
+
* Adds a text underline to the label to reinforce the button's link-like appearance.
|
|
4223
4235
|
* @default false
|
|
4224
4236
|
*/
|
|
4225
4237
|
underline?: boolean;
|
|
4226
4238
|
/**
|
|
4227
|
-
*
|
|
4239
|
+
* Sets the value submitted with the form data when this button triggers form submission, paired with `name`.
|
|
4228
4240
|
*/
|
|
4229
4241
|
value?: string;
|
|
4230
4242
|
};
|
|
@@ -4251,68 +4263,68 @@ declare class PButtonPure extends BaseComponent {
|
|
|
4251
4263
|
|
|
4252
4264
|
type PButtonTileProps = {
|
|
4253
4265
|
/**
|
|
4254
|
-
*
|
|
4266
|
+
* Controls the vertical placement of the description and button — `top` or `bottom`.
|
|
4255
4267
|
* @default 'bottom'
|
|
4256
4268
|
*/
|
|
4257
4269
|
align?: ButtonTileAlign;
|
|
4258
4270
|
/**
|
|
4259
|
-
* Sets ARIA attributes.
|
|
4271
|
+
* Sets ARIA attributes on the tile's action button to improve accessibility for screen readers.
|
|
4260
4272
|
*/
|
|
4261
4273
|
aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;
|
|
4262
4274
|
/**
|
|
4263
|
-
*
|
|
4275
|
+
* Sets the width-to-height ratio of the tile media area. Supports responsive breakpoint values.
|
|
4264
4276
|
* @default '4/3'
|
|
4265
4277
|
*/
|
|
4266
4278
|
aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;
|
|
4267
4279
|
/**
|
|
4268
|
-
*
|
|
4280
|
+
* Renders only the icon button without the full label. Supports responsive breakpoint values.
|
|
4269
4281
|
* @default false
|
|
4270
4282
|
*/
|
|
4271
4283
|
compact?: BreakpointCustomizable<boolean>;
|
|
4272
4284
|
/**
|
|
4273
|
-
*
|
|
4285
|
+
* Sets the description text displayed in the tile's content area.
|
|
4274
4286
|
*/
|
|
4275
4287
|
description: string;
|
|
4276
4288
|
/**
|
|
4277
|
-
* Disables the
|
|
4289
|
+
* Disables the tile, preventing button interaction.
|
|
4278
4290
|
* @default false
|
|
4279
4291
|
*/
|
|
4280
4292
|
disabled?: boolean;
|
|
4281
4293
|
/**
|
|
4282
|
-
*
|
|
4294
|
+
* Shows a gradient overlay over the media slot to improve text legibility on bright images or videos.
|
|
4283
4295
|
* @default false
|
|
4284
4296
|
*/
|
|
4285
4297
|
gradient?: boolean;
|
|
4286
4298
|
/**
|
|
4287
|
-
*
|
|
4299
|
+
* Sets the icon displayed in the tile's action button. Use `none` to show no icon.
|
|
4288
4300
|
* @default 'none'
|
|
4289
4301
|
*/
|
|
4290
4302
|
icon?: ButtonTileIcon;
|
|
4291
4303
|
/**
|
|
4292
|
-
*
|
|
4304
|
+
* Sets a path to a custom SVG icon for the action button, used instead of the built-in icon set.
|
|
4293
4305
|
*/
|
|
4294
4306
|
iconSource?: string;
|
|
4295
4307
|
/**
|
|
4296
|
-
*
|
|
4308
|
+
* Sets the accessible label text of the action button rendered inside the tile.
|
|
4297
4309
|
*/
|
|
4298
4310
|
label: string;
|
|
4299
4311
|
/**
|
|
4300
|
-
* Disables the
|
|
4312
|
+
* Disables the tile and shows a loading spinner to indicate an ongoing operation.
|
|
4301
4313
|
* @default false
|
|
4302
4314
|
*/
|
|
4303
4315
|
loading?: boolean;
|
|
4304
4316
|
/**
|
|
4305
|
-
*
|
|
4317
|
+
* Sets the font size of the description text in the tile content area. Supports responsive breakpoint values.
|
|
4306
4318
|
* @default 'medium'
|
|
4307
4319
|
*/
|
|
4308
4320
|
size?: BreakpointCustomizable<ButtonTileSize>;
|
|
4309
4321
|
/**
|
|
4310
|
-
*
|
|
4322
|
+
* Sets the button's HTML type — `submit` sends the form, `reset` clears it, `button` performs no default action.
|
|
4311
4323
|
* @default 'submit'
|
|
4312
4324
|
*/
|
|
4313
4325
|
type?: ButtonTileType;
|
|
4314
4326
|
/**
|
|
4315
|
-
*
|
|
4327
|
+
* Sets the font weight of the description text in the tile content area. Supports responsive breakpoint values.
|
|
4316
4328
|
* @default 'semi-bold'
|
|
4317
4329
|
*/
|
|
4318
4330
|
weight?: BreakpointCustomizable<ButtonTileWeight>;
|
|
@@ -4338,17 +4350,17 @@ declare class PButtonTile extends BaseComponent {
|
|
|
4338
4350
|
|
|
4339
4351
|
type PCanvasProps = {
|
|
4340
4352
|
/**
|
|
4341
|
-
*
|
|
4353
|
+
* Sets the background color of the main content area and automatically applies a matching color to the sidebar.
|
|
4342
4354
|
* @default 'canvas'
|
|
4343
4355
|
*/
|
|
4344
4356
|
background?: CanvasBackground;
|
|
4345
4357
|
/**
|
|
4346
|
-
*
|
|
4358
|
+
* Controls whether the utility sidebar on the end side (right in LTR) is open or collapsed.
|
|
4347
4359
|
* @default false
|
|
4348
4360
|
*/
|
|
4349
4361
|
sidebarEndOpen?: boolean;
|
|
4350
4362
|
/**
|
|
4351
|
-
*
|
|
4363
|
+
* Controls whether the navigation sidebar on the start side (left in LTR) is open or collapsed.
|
|
4352
4364
|
* @default false
|
|
4353
4365
|
*/
|
|
4354
4366
|
sidebarStartOpen?: boolean;
|
|
@@ -4365,77 +4377,77 @@ declare class PCanvas extends BaseComponent {
|
|
|
4365
4377
|
|
|
4366
4378
|
type PCarouselProps = {
|
|
4367
4379
|
/**
|
|
4368
|
-
*
|
|
4380
|
+
* Sets the zero-based index of the currently visible slide. Update this to navigate programmatically.
|
|
4369
4381
|
* @default 0
|
|
4370
4382
|
*/
|
|
4371
4383
|
activeSlideIndex?: number;
|
|
4372
4384
|
/**
|
|
4373
|
-
*
|
|
4385
|
+
* Controls the alignment of custom slotted controls within the header area.
|
|
4374
4386
|
* @default 'auto'
|
|
4375
4387
|
*/
|
|
4376
4388
|
alignControls?: CarouselAlignControls;
|
|
4377
4389
|
/**
|
|
4378
|
-
*
|
|
4390
|
+
* Controls the horizontal alignment of the heading and description.
|
|
4379
4391
|
* @default 'start'
|
|
4380
4392
|
*/
|
|
4381
4393
|
alignHeader?: CarouselAlignHeader;
|
|
4382
4394
|
/**
|
|
4383
|
-
* Sets ARIA attributes.
|
|
4395
|
+
* Sets ARIA attributes on the carousel region element for improved accessibility.
|
|
4384
4396
|
*/
|
|
4385
4397
|
aria?: SelectedAriaAttributes<CarouselAriaAttribute>;
|
|
4386
4398
|
/**
|
|
4387
|
-
*
|
|
4399
|
+
* Sets the description text displayed below the heading for additional context.
|
|
4388
4400
|
*/
|
|
4389
4401
|
description?: string;
|
|
4390
4402
|
/**
|
|
4391
|
-
*
|
|
4403
|
+
* When enabled, each slide is individually focusable and the carousel navigates one slide at a time instead of one page.
|
|
4392
4404
|
* @default false
|
|
4393
4405
|
*/
|
|
4394
4406
|
focusOnCenterSlide?: boolean;
|
|
4395
4407
|
/**
|
|
4396
|
-
*
|
|
4408
|
+
* Shows a gradient fade at the start and end edges to visually indicate more slides beyond the viewport.
|
|
4397
4409
|
* @default false
|
|
4398
4410
|
*/
|
|
4399
4411
|
gradient?: boolean;
|
|
4400
4412
|
/**
|
|
4401
|
-
*
|
|
4413
|
+
* Sets the heading text displayed above the carousel. Also used as the accessible label when no `aria` prop is set.
|
|
4402
4414
|
*/
|
|
4403
4415
|
heading?: string;
|
|
4404
4416
|
/**
|
|
4405
|
-
*
|
|
4417
|
+
* Sets the font size of the carousel heading.
|
|
4406
4418
|
* @default 'x-large'
|
|
4407
4419
|
*/
|
|
4408
4420
|
headingSize?: CarouselHeadingSize;
|
|
4409
4421
|
/**
|
|
4410
|
-
*
|
|
4422
|
+
* Overrides the default label strings used for the previous, next, and page indicators — useful for localization.
|
|
4411
4423
|
*/
|
|
4412
4424
|
intl?: CarouselInternationalization;
|
|
4413
4425
|
/**
|
|
4414
|
-
*
|
|
4426
|
+
* Shows pagination dot indicators below the carousel. Supports responsive breakpoint values.
|
|
4415
4427
|
* @default false
|
|
4416
4428
|
*/
|
|
4417
4429
|
pagination?: BreakpointCustomizable<boolean>;
|
|
4418
4430
|
/**
|
|
4419
|
-
*
|
|
4431
|
+
* Enables infinite looping — navigating past the last slide wraps back to the first, and vice versa.
|
|
4420
4432
|
* @default false
|
|
4421
4433
|
*/
|
|
4422
4434
|
rewind?: boolean;
|
|
4423
4435
|
/**
|
|
4424
|
-
*
|
|
4436
|
+
* Sets the `href` of an in-page skip link that lets keyboard users jump past the carousel slides.
|
|
4425
4437
|
*/
|
|
4426
4438
|
skipLinkTarget?: string;
|
|
4427
4439
|
/**
|
|
4428
|
-
* Sets
|
|
4440
|
+
* Sets how many slides are visible at once. Use `auto` to control each slide's width via CSS. Supports responsive breakpoint values.
|
|
4429
4441
|
* @default 1
|
|
4430
4442
|
*/
|
|
4431
4443
|
slidesPerPage?: BreakpointCustomizable<CarouselSlidesPerPage>;
|
|
4432
4444
|
/**
|
|
4433
|
-
*
|
|
4445
|
+
* Removes whitespace before the first and after the last slide when `focusOnCenterSlide` is enabled.
|
|
4434
4446
|
* @default false
|
|
4435
4447
|
*/
|
|
4436
4448
|
trimSpace?: boolean;
|
|
4437
4449
|
/**
|
|
4438
|
-
*
|
|
4450
|
+
* Sets the maximum width and outer spacing of the carousel, aligned to PDS grid widths.
|
|
4439
4451
|
* @default 'basic'
|
|
4440
4452
|
*/
|
|
4441
4453
|
width?: CarouselWidth;
|
|
@@ -4464,15 +4476,15 @@ declare class PCarousel extends BaseComponent {
|
|
|
4464
4476
|
|
|
4465
4477
|
type PCrestProps = {
|
|
4466
4478
|
/**
|
|
4467
|
-
* Sets ARIA attributes.
|
|
4479
|
+
* Sets ARIA attributes on the anchor element to improve accessibility when the crest is used as a link.
|
|
4468
4480
|
*/
|
|
4469
4481
|
aria?: SelectedAriaAttributes<CrestAriaAttribute>;
|
|
4470
4482
|
/**
|
|
4471
|
-
* When
|
|
4483
|
+
* When set, renders the crest as an anchor element navigating to this URL when clicked.
|
|
4472
4484
|
*/
|
|
4473
4485
|
href?: string;
|
|
4474
4486
|
/**
|
|
4475
|
-
* Specifies where to open the linked
|
|
4487
|
+
* Specifies where to open the linked URL (e.g. `_self`, `_blank`). Only applies when `href` is set.
|
|
4476
4488
|
* @default '_self'
|
|
4477
4489
|
*/
|
|
4478
4490
|
target?: CrestTarget;
|
|
@@ -4487,27 +4499,27 @@ declare class PCrest extends BaseComponent {
|
|
|
4487
4499
|
|
|
4488
4500
|
type PDisplayProps = {
|
|
4489
4501
|
/**
|
|
4490
|
-
*
|
|
4502
|
+
* Sets the horizontal text alignment (`start`, `center`, `end`, or `inherit`).
|
|
4491
4503
|
* @default 'start'
|
|
4492
4504
|
*/
|
|
4493
4505
|
align?: DisplayAlign;
|
|
4494
4506
|
/**
|
|
4495
|
-
*
|
|
4507
|
+
* Sets the text color using PDS color tokens.
|
|
4496
4508
|
* @default 'primary'
|
|
4497
4509
|
*/
|
|
4498
4510
|
color?: DisplayColor;
|
|
4499
4511
|
/**
|
|
4500
|
-
*
|
|
4512
|
+
* Truncates the text with an ellipsis when it overflows the container on a single line.
|
|
4501
4513
|
* @default false
|
|
4502
4514
|
*/
|
|
4503
4515
|
ellipsis?: boolean;
|
|
4504
4516
|
/**
|
|
4505
|
-
*
|
|
4517
|
+
* Sets the visual text size. Supports responsive breakpoint values.
|
|
4506
4518
|
* @default 'large'
|
|
4507
4519
|
*/
|
|
4508
4520
|
size?: BreakpointCustomizable<DisplaySize>;
|
|
4509
4521
|
/**
|
|
4510
|
-
* Sets
|
|
4522
|
+
* Sets the HTML heading tag (h1–h6) for correct document outline placement. When omitted, the tag is inferred from `size`.
|
|
4511
4523
|
*/
|
|
4512
4524
|
tag?: DisplayTag;
|
|
4513
4525
|
};
|
|
@@ -4524,12 +4536,12 @@ declare class PDisplay extends BaseComponent {
|
|
|
4524
4536
|
|
|
4525
4537
|
type PDividerProps = {
|
|
4526
4538
|
/**
|
|
4527
|
-
*
|
|
4539
|
+
* Sets the color of the divider line using PDS contrast tokens.
|
|
4528
4540
|
* @default 'contrast-lower'
|
|
4529
4541
|
*/
|
|
4530
4542
|
color?: DividerColor;
|
|
4531
4543
|
/**
|
|
4532
|
-
*
|
|
4544
|
+
* Sets the orientation of the divider to `horizontal` or `vertical`. Supports responsive breakpoint values.
|
|
4533
4545
|
* @default 'horizontal'
|
|
4534
4546
|
*/
|
|
4535
4547
|
direction?: BreakpointCustomizable<DividerDirection>;
|
|
@@ -4543,15 +4555,15 @@ declare class PDivider extends BaseComponent {
|
|
|
4543
4555
|
|
|
4544
4556
|
type PDrilldownProps = {
|
|
4545
4557
|
/**
|
|
4546
|
-
*
|
|
4558
|
+
* Sets which `p-drilldown-item` (by `identifier`) is currently expanded to show its sub-navigation level.
|
|
4547
4559
|
*/
|
|
4548
4560
|
activeIdentifier?: string | undefined;
|
|
4549
4561
|
/**
|
|
4550
|
-
* Sets ARIA attributes.
|
|
4562
|
+
* Sets ARIA attributes on the drilldown dialog element for improved screen reader accessibility.
|
|
4551
4563
|
*/
|
|
4552
4564
|
aria?: SelectedAriaAttributes<DrilldownAriaAttribute>;
|
|
4553
4565
|
/**
|
|
4554
|
-
*
|
|
4566
|
+
* Controls whether the drilldown navigation panel is visible.
|
|
4555
4567
|
* @default false
|
|
4556
4568
|
*/
|
|
4557
4569
|
open?: boolean;
|
|
@@ -4573,11 +4585,11 @@ type PDrilldownItemProps = {
|
|
|
4573
4585
|
*/
|
|
4574
4586
|
cascade?: boolean;
|
|
4575
4587
|
/**
|
|
4576
|
-
*
|
|
4588
|
+
* Sets the unique identifier matched against the drilldown's `activeIdentifier` to determine if this item is shown.
|
|
4577
4589
|
*/
|
|
4578
4590
|
identifier: string;
|
|
4579
4591
|
/**
|
|
4580
|
-
*
|
|
4592
|
+
* Sets the text used for the back button, sticky header, and cascade button that navigates into this navigation level.
|
|
4581
4593
|
*/
|
|
4582
4594
|
label?: string;
|
|
4583
4595
|
/**
|
|
@@ -4603,28 +4615,28 @@ declare class PDrilldownItem extends BaseComponent {
|
|
|
4603
4615
|
|
|
4604
4616
|
type PDrilldownLinkProps = {
|
|
4605
4617
|
/**
|
|
4606
|
-
*
|
|
4618
|
+
* Visually marks the link as the currently active navigation item, e.g. the current page.
|
|
4607
4619
|
* @default false
|
|
4608
4620
|
*/
|
|
4609
4621
|
active?: boolean;
|
|
4610
4622
|
/**
|
|
4611
|
-
*
|
|
4623
|
+
* Sets ARIA attributes on the link for improved accessibility. Only applies when `href` is set.
|
|
4612
4624
|
*/
|
|
4613
4625
|
aria?: SelectedAriaAttributes<DrilldownLinkAriaAttribute>;
|
|
4614
4626
|
/**
|
|
4615
|
-
* Sets the native `download` attribute
|
|
4627
|
+
* Sets the native `download` attribute to trigger a file download. Only applies when `href` is set.
|
|
4616
4628
|
*/
|
|
4617
4629
|
download?: string;
|
|
4618
4630
|
/**
|
|
4619
|
-
* When
|
|
4631
|
+
* When set, the component renders as an anchor navigating to this URL. Otherwise, provide a slotted anchor element.
|
|
4620
4632
|
*/
|
|
4621
4633
|
href?: string;
|
|
4622
4634
|
/**
|
|
4623
|
-
* Sets the `rel` attribute on the link (
|
|
4635
|
+
* Sets the `rel` attribute on the link element (e.g. `noopener`). Only applies when `href` is set.
|
|
4624
4636
|
*/
|
|
4625
4637
|
rel?: string;
|
|
4626
4638
|
/**
|
|
4627
|
-
*
|
|
4639
|
+
* Specifies where to open the linked URL (e.g. `_self`, `_blank`). Only applies when `href` is set.
|
|
4628
4640
|
* @default '_self'
|
|
4629
4641
|
*/
|
|
4630
4642
|
target?: DrilldownLinkTarget;
|
|
@@ -4642,31 +4654,31 @@ declare class PDrilldownLink extends BaseComponent {
|
|
|
4642
4654
|
|
|
4643
4655
|
type PFieldsetProps = {
|
|
4644
4656
|
/**
|
|
4645
|
-
*
|
|
4657
|
+
* Overrides the ARIA role on the fieldset — use `radiogroup` when grouping radio buttons.
|
|
4646
4658
|
*/
|
|
4647
4659
|
aria?: SelectedAriaRole<"radiogroup">;
|
|
4648
4660
|
/**
|
|
4649
|
-
*
|
|
4661
|
+
* Sets the visible legend text displayed above the grouped form controls.
|
|
4650
4662
|
* @default ''
|
|
4651
4663
|
*/
|
|
4652
4664
|
label?: string;
|
|
4653
4665
|
/**
|
|
4654
|
-
*
|
|
4666
|
+
* Sets the font size of the fieldset label (`small`, `medium`, or `large`).
|
|
4655
4667
|
* @default 'medium'
|
|
4656
4668
|
*/
|
|
4657
4669
|
labelSize?: FieldsetLabelSize;
|
|
4658
4670
|
/**
|
|
4659
|
-
*
|
|
4671
|
+
* Sets the validation feedback message displayed below the fieldset when `state` is `success` or `error`.
|
|
4660
4672
|
* @default ''
|
|
4661
4673
|
*/
|
|
4662
4674
|
message?: string;
|
|
4663
4675
|
/**
|
|
4664
|
-
* Marks the
|
|
4676
|
+
* Marks all controls within the fieldset as required and adds a required indicator to the label.
|
|
4665
4677
|
* @default false
|
|
4666
4678
|
*/
|
|
4667
4679
|
required?: boolean;
|
|
4668
4680
|
/**
|
|
4669
|
-
*
|
|
4681
|
+
* Sets the validation state of the fieldset, controlling the color and style of the feedback message.
|
|
4670
4682
|
* @default 'none'
|
|
4671
4683
|
*/
|
|
4672
4684
|
state?: FieldsetState;
|
|
@@ -4708,26 +4720,26 @@ declare class PFlag extends BaseComponent {
|
|
|
4708
4720
|
|
|
4709
4721
|
type PFlyoutProps = {
|
|
4710
4722
|
/**
|
|
4711
|
-
* Sets ARIA attributes.
|
|
4723
|
+
* Sets ARIA attributes on the flyout dialog element for improved screen reader accessibility.
|
|
4712
4724
|
*/
|
|
4713
4725
|
aria?: SelectedAriaAttributes<FlyoutAriaAttribute>;
|
|
4714
4726
|
/**
|
|
4715
|
-
*
|
|
4727
|
+
* Sets the backdrop style. Use `blur` when background content is irrelevant; use `shading` when users still need visual context.
|
|
4716
4728
|
* @default 'blur'
|
|
4717
4729
|
*/
|
|
4718
4730
|
backdrop?: FlyoutBackdrop;
|
|
4719
4731
|
/**
|
|
4720
|
-
*
|
|
4732
|
+
* Sets the background color of the flyout panel (`canvas` or `surface`).
|
|
4721
4733
|
* @default 'canvas'
|
|
4722
4734
|
*/
|
|
4723
4735
|
background?: FlyoutBackground;
|
|
4724
4736
|
/**
|
|
4725
|
-
*
|
|
4737
|
+
* When enabled, clicking the backdrop will not close the flyout.
|
|
4726
4738
|
* @default false
|
|
4727
4739
|
*/
|
|
4728
4740
|
disableBackdropClick?: boolean;
|
|
4729
4741
|
/**
|
|
4730
|
-
*
|
|
4742
|
+
* Controls footer behavior. `fixed` keeps it anchored at the bottom; `sticky` pins it only when content overflows.
|
|
4731
4743
|
* @default 'sticky'
|
|
4732
4744
|
*/
|
|
4733
4745
|
footerBehavior?: FlyoutFooterBehavior;
|
|
@@ -4737,12 +4749,12 @@ type PFlyoutProps = {
|
|
|
4737
4749
|
*/
|
|
4738
4750
|
fullscreen?: BreakpointCustomizable<boolean>;
|
|
4739
4751
|
/**
|
|
4740
|
-
*
|
|
4752
|
+
* Controls whether the flyout panel is visible.
|
|
4741
4753
|
* @default false
|
|
4742
4754
|
*/
|
|
4743
4755
|
open: boolean;
|
|
4744
4756
|
/**
|
|
4745
|
-
*
|
|
4757
|
+
* Sets the side the flyout slides in from — `start` for left or `end` for right in LTR layouts.
|
|
4746
4758
|
* @default 'end'
|
|
4747
4759
|
*/
|
|
4748
4760
|
position?: FlyoutPosition;
|
|
@@ -4765,36 +4777,36 @@ declare class PFlyout extends BaseComponent {
|
|
|
4765
4777
|
|
|
4766
4778
|
type PHeadingProps = {
|
|
4767
4779
|
/**
|
|
4768
|
-
*
|
|
4780
|
+
* Sets the horizontal text alignment (`start`, `center`, `end`, or `inherit`).
|
|
4769
4781
|
* @default 'start'
|
|
4770
4782
|
*/
|
|
4771
4783
|
align?: HeadingAlign;
|
|
4772
4784
|
/**
|
|
4773
|
-
*
|
|
4785
|
+
* Sets the text color using PDS color tokens.
|
|
4774
4786
|
* @default 'primary'
|
|
4775
4787
|
*/
|
|
4776
4788
|
color?: HeadingColor;
|
|
4777
4789
|
/**
|
|
4778
|
-
*
|
|
4790
|
+
* Truncates the text with an ellipsis when it overflows the container on a single line. Cannot be combined with multi-line content.
|
|
4779
4791
|
* @default false
|
|
4780
4792
|
*/
|
|
4781
4793
|
ellipsis?: boolean;
|
|
4782
4794
|
/**
|
|
4783
|
-
* Controls
|
|
4795
|
+
* Controls hyphenation behavior — `auto` lets the browser decide, `manual` only breaks at `­`, `none` disables it entirely.
|
|
4784
4796
|
* @default 'none'
|
|
4785
4797
|
*/
|
|
4786
4798
|
hyphens?: HeadingHyphens;
|
|
4787
4799
|
/**
|
|
4788
|
-
*
|
|
4800
|
+
* Sets the visual size of the heading. Use `inherit` to derive size from the parent. Supports responsive breakpoint values.
|
|
4789
4801
|
* @default '2xl'
|
|
4790
4802
|
*/
|
|
4791
4803
|
size?: BreakpointCustomizable<HeadingSize>;
|
|
4792
4804
|
/**
|
|
4793
|
-
* Sets the HTML heading tag (h1
|
|
4805
|
+
* Sets the HTML heading tag (h1–h6) for correct document outline placement. When omitted, the tag is inferred from `size`.
|
|
4794
4806
|
*/
|
|
4795
4807
|
tag?: HeadingTag;
|
|
4796
4808
|
/**
|
|
4797
|
-
*
|
|
4809
|
+
* Sets the font weight — `normal`, `semibold`, or `bold`.
|
|
4798
4810
|
* @default 'normal'
|
|
4799
4811
|
*/
|
|
4800
4812
|
weight?: HeadingWeight;
|
|
@@ -4813,26 +4825,26 @@ declare class PHeading extends BaseComponent {
|
|
|
4813
4825
|
|
|
4814
4826
|
type PIconProps = {
|
|
4815
4827
|
/**
|
|
4816
|
-
* Sets ARIA attributes.
|
|
4828
|
+
* Sets ARIA attributes on the icon — use `aria-label` to make the icon meaningful to screen readers when it conveys information.
|
|
4817
4829
|
*/
|
|
4818
4830
|
aria?: SelectedAriaAttributes<IconAriaAttribute>;
|
|
4819
4831
|
/**
|
|
4820
|
-
*
|
|
4832
|
+
* Sets the fill color of the icon using PDS color tokens.
|
|
4821
4833
|
* @default 'primary'
|
|
4822
4834
|
*/
|
|
4823
4835
|
color?: IconColor;
|
|
4824
4836
|
/**
|
|
4825
|
-
*
|
|
4837
|
+
* Selects an icon from the built-in PDS icon library by name (e.g. `arrow-right`, `close`).
|
|
4826
4838
|
* @default 'arrow-right'
|
|
4827
4839
|
*/
|
|
4828
4840
|
name?: IconName;
|
|
4829
4841
|
/**
|
|
4830
|
-
*
|
|
4842
|
+
* Sets the icon size using the PDS typographic scale. Use `inherit` to derive size from the parent element. Supports responsive breakpoint values.
|
|
4831
4843
|
* @default 'sm'
|
|
4832
4844
|
*/
|
|
4833
4845
|
size?: BreakpointCustomizable<IconSize>;
|
|
4834
4846
|
/**
|
|
4835
|
-
*
|
|
4847
|
+
* Sets a path to a custom SVG icon, used instead of the built-in icon library.
|
|
4836
4848
|
*/
|
|
4837
4849
|
source?: string;
|
|
4838
4850
|
};
|
|
@@ -4848,41 +4860,41 @@ declare class PIcon extends BaseComponent {
|
|
|
4848
4860
|
|
|
4849
4861
|
type PInlineNotificationProps = {
|
|
4850
4862
|
/**
|
|
4851
|
-
*
|
|
4863
|
+
* Sets the icon displayed inside the action button using a PDS icon name.
|
|
4852
4864
|
* @default 'arrow-right'
|
|
4853
4865
|
*/
|
|
4854
4866
|
actionIcon?: InlineNotificationActionIcon;
|
|
4855
4867
|
/**
|
|
4856
|
-
*
|
|
4868
|
+
* Sets the label text of the optional action button inside the notification.
|
|
4857
4869
|
*/
|
|
4858
4870
|
actionLabel?: string;
|
|
4859
4871
|
/**
|
|
4860
|
-
* Disables the action button and shows a
|
|
4872
|
+
* Disables the action button and shows a spinner to indicate an ongoing operation.
|
|
4861
4873
|
* @default false
|
|
4862
4874
|
*/
|
|
4863
4875
|
actionLoading?: boolean;
|
|
4864
4876
|
/**
|
|
4865
|
-
*
|
|
4877
|
+
* Sets the supporting description text shown below the heading.
|
|
4866
4878
|
* @default ''
|
|
4867
4879
|
*/
|
|
4868
4880
|
description?: string;
|
|
4869
4881
|
/**
|
|
4870
|
-
*
|
|
4882
|
+
* Shows a dismiss button so the user can manually close the notification.
|
|
4871
4883
|
* @default true
|
|
4872
4884
|
*/
|
|
4873
4885
|
dismissButton?: boolean;
|
|
4874
4886
|
/**
|
|
4875
|
-
*
|
|
4887
|
+
* Sets the heading text displayed at the top of the inline notification.
|
|
4876
4888
|
* @default ''
|
|
4877
4889
|
*/
|
|
4878
4890
|
heading?: string;
|
|
4879
4891
|
/**
|
|
4880
|
-
* Sets
|
|
4892
|
+
* Sets the HTML heading tag (e.g. h2, h3) to maintain correct document structure.
|
|
4881
4893
|
* @default 'h5'
|
|
4882
4894
|
*/
|
|
4883
4895
|
headingTag?: InlineNotificationHeadingTag;
|
|
4884
4896
|
/**
|
|
4885
|
-
*
|
|
4897
|
+
* Sets the visual state — controls the icon and color scheme (`info`, `warning`, `error`, `success`).
|
|
4886
4898
|
* @default 'info'
|
|
4887
4899
|
*/
|
|
4888
4900
|
state?: InlineNotificationState;
|
|
@@ -4904,47 +4916,47 @@ declare class PInlineNotification extends BaseComponent {
|
|
|
4904
4916
|
|
|
4905
4917
|
type PLinkProps = {
|
|
4906
4918
|
/**
|
|
4907
|
-
* Sets ARIA attributes.
|
|
4919
|
+
* Sets ARIA attributes on the link element to improve accessibility for screen readers.
|
|
4908
4920
|
*/
|
|
4909
4921
|
aria?: SelectedAriaAttributes<LinkAriaAttribute>;
|
|
4910
4922
|
/**
|
|
4911
|
-
*
|
|
4923
|
+
* Reduces the link's padding and height for denser layouts. Supports responsive breakpoint values.
|
|
4912
4924
|
* @default false
|
|
4913
4925
|
*/
|
|
4914
4926
|
compact?: BreakpointCustomizable<boolean>;
|
|
4915
4927
|
/**
|
|
4916
|
-
* Sets the native `download` attribute
|
|
4928
|
+
* Sets the native `download` attribute to trigger a file download. Only applies when `href` is set.
|
|
4917
4929
|
*/
|
|
4918
4930
|
download?: string;
|
|
4919
4931
|
/**
|
|
4920
|
-
*
|
|
4932
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
4921
4933
|
* @default false
|
|
4922
4934
|
*/
|
|
4923
4935
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
4924
4936
|
/**
|
|
4925
|
-
* When
|
|
4937
|
+
* When set, the component renders as an anchor navigating to this URL. Otherwise, provide a slotted anchor element.
|
|
4926
4938
|
*/
|
|
4927
4939
|
href?: string;
|
|
4928
4940
|
/**
|
|
4929
|
-
*
|
|
4941
|
+
* Sets the icon displayed next to the link label. Use `none` to show no icon.
|
|
4930
4942
|
* @default 'none'
|
|
4931
4943
|
*/
|
|
4932
4944
|
icon?: LinkIcon;
|
|
4933
4945
|
/**
|
|
4934
|
-
*
|
|
4946
|
+
* Sets a path to a custom SVG icon, used instead of the built-in icon set.
|
|
4935
4947
|
*/
|
|
4936
4948
|
iconSource?: string;
|
|
4937
4949
|
/**
|
|
4938
|
-
* Sets the `rel` attribute on the link.
|
|
4950
|
+
* Sets the `rel` attribute on the link (e.g. `noopener`). Only applies when `href` is set.
|
|
4939
4951
|
*/
|
|
4940
4952
|
rel?: string;
|
|
4941
4953
|
/**
|
|
4942
|
-
* Specifies where to open the linked
|
|
4954
|
+
* Specifies where to open the linked URL (e.g. `_self`, `_blank`). Only applies when `href` is set.
|
|
4943
4955
|
* @default '_self'
|
|
4944
4956
|
*/
|
|
4945
4957
|
target?: LinkTarget;
|
|
4946
4958
|
/**
|
|
4947
|
-
*
|
|
4959
|
+
* Sets the visual style variant of the link (e.g. `primary`, `secondary`, `tertiary`).
|
|
4948
4960
|
* @default 'primary'
|
|
4949
4961
|
*/
|
|
4950
4962
|
variant?: LinkVariant;
|
|
@@ -4966,67 +4978,67 @@ declare class PLink extends BaseComponent {
|
|
|
4966
4978
|
|
|
4967
4979
|
type PLinkPureProps = {
|
|
4968
4980
|
/**
|
|
4969
|
-
*
|
|
4981
|
+
* Visually marks the link as the currently active navigation item, e.g. the current page.
|
|
4970
4982
|
* @default false
|
|
4971
4983
|
*/
|
|
4972
4984
|
active?: boolean;
|
|
4973
4985
|
/**
|
|
4974
|
-
*
|
|
4986
|
+
* Sets the label position relative to the icon — `start` places it before, `end` places it after. Supports responsive breakpoint values.
|
|
4975
4987
|
* @default 'end'
|
|
4976
4988
|
*/
|
|
4977
4989
|
alignLabel?: BreakpointCustomizable<LinkPureAlignLabel>;
|
|
4978
4990
|
/**
|
|
4979
|
-
* Sets ARIA attributes.
|
|
4991
|
+
* Sets ARIA attributes on the link element to improve accessibility for screen readers.
|
|
4980
4992
|
*/
|
|
4981
4993
|
aria?: SelectedAriaAttributes<LinkPureAriaAttribute>;
|
|
4982
4994
|
/**
|
|
4983
|
-
*
|
|
4995
|
+
* Sets the foreground color of the link's icon and label text.
|
|
4984
4996
|
* @default 'primary'
|
|
4985
4997
|
*/
|
|
4986
4998
|
color?: LinkPureColor;
|
|
4987
4999
|
/**
|
|
4988
|
-
* Sets the native `download` attribute
|
|
5000
|
+
* Sets the native `download` attribute to trigger a file download. Only applies when `href` is set.
|
|
4989
5001
|
*/
|
|
4990
5002
|
download?: string;
|
|
4991
5003
|
/**
|
|
4992
|
-
*
|
|
5004
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
4993
5005
|
* @default false
|
|
4994
5006
|
*/
|
|
4995
5007
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
4996
5008
|
/**
|
|
4997
|
-
* When
|
|
5009
|
+
* When set, the component renders as an anchor navigating to this URL. Otherwise, provide a slotted anchor element.
|
|
4998
5010
|
*/
|
|
4999
5011
|
href?: string;
|
|
5000
5012
|
/**
|
|
5001
|
-
*
|
|
5013
|
+
* Sets the icon displayed next to the label.
|
|
5002
5014
|
* @default 'arrow-right'
|
|
5003
5015
|
*/
|
|
5004
5016
|
icon?: LinkPureIcon;
|
|
5005
5017
|
/**
|
|
5006
|
-
*
|
|
5018
|
+
* Sets a path to a custom SVG icon, used instead of the built-in icon set.
|
|
5007
5019
|
*/
|
|
5008
5020
|
iconSource?: string;
|
|
5009
5021
|
/**
|
|
5010
|
-
* Sets the `rel` attribute on the link.
|
|
5022
|
+
* Sets the `rel` attribute on the link (e.g. `noopener`). Only applies when `href` is set.
|
|
5011
5023
|
*/
|
|
5012
5024
|
rel?: string;
|
|
5013
5025
|
/**
|
|
5014
|
-
*
|
|
5026
|
+
* Sets the font size of the link label. Supports responsive breakpoint values.
|
|
5015
5027
|
* @default 'sm'
|
|
5016
5028
|
*/
|
|
5017
5029
|
size?: BreakpointCustomizable<LinkPureSize>;
|
|
5018
5030
|
/**
|
|
5019
|
-
*
|
|
5031
|
+
* Expands the space between icon and label to fill the full container width. Supports responsive breakpoint values.
|
|
5020
5032
|
* @default false
|
|
5021
5033
|
*/
|
|
5022
5034
|
stretch?: BreakpointCustomizable<boolean>;
|
|
5023
5035
|
/**
|
|
5024
|
-
* Specifies where to open the linked
|
|
5036
|
+
* Specifies where to open the linked URL (e.g. `_self`, `_blank`). Only applies when `href` is set.
|
|
5025
5037
|
* @default '_self'
|
|
5026
5038
|
*/
|
|
5027
5039
|
target?: LinkPureTarget;
|
|
5028
5040
|
/**
|
|
5029
|
-
*
|
|
5041
|
+
* Adds a text underline to the label to reinforce its link-like appearance.
|
|
5030
5042
|
* @default false
|
|
5031
5043
|
*/
|
|
5032
5044
|
underline?: boolean;
|
|
@@ -5052,61 +5064,61 @@ declare class PLinkPure extends BaseComponent {
|
|
|
5052
5064
|
|
|
5053
5065
|
type PLinkTileProps = {
|
|
5054
5066
|
/**
|
|
5055
|
-
*
|
|
5067
|
+
* Controls the vertical placement of the description and link — `top` or `bottom`.
|
|
5056
5068
|
* @default 'bottom'
|
|
5057
5069
|
*/
|
|
5058
5070
|
align?: LinkTileAlign;
|
|
5059
5071
|
/**
|
|
5060
|
-
* Sets ARIA attributes.
|
|
5072
|
+
* Sets ARIA attributes on the tile's anchor element to improve accessibility for screen readers.
|
|
5061
5073
|
*/
|
|
5062
5074
|
aria?: SelectedAriaAttributes<LinkTileAriaAttribute>;
|
|
5063
5075
|
/**
|
|
5064
|
-
*
|
|
5076
|
+
* Sets the width-to-height ratio of the tile media area. Supports responsive breakpoint values.
|
|
5065
5077
|
* @default '4/3'
|
|
5066
5078
|
*/
|
|
5067
5079
|
aspectRatio?: BreakpointCustomizable<LinkTileAspectRatio>;
|
|
5068
5080
|
/**
|
|
5069
|
-
*
|
|
5081
|
+
* Renders only the icon link without the full label. Supports responsive breakpoint values.
|
|
5070
5082
|
* @default false
|
|
5071
5083
|
*/
|
|
5072
5084
|
compact?: BreakpointCustomizable<boolean>;
|
|
5073
5085
|
/**
|
|
5074
|
-
*
|
|
5086
|
+
* Sets the description text displayed in the tile's content area.
|
|
5075
5087
|
*/
|
|
5076
5088
|
description: string;
|
|
5077
5089
|
/**
|
|
5078
|
-
* Sets the native `download` attribute
|
|
5090
|
+
* Sets the native `download` attribute to trigger a file download.
|
|
5079
5091
|
*/
|
|
5080
5092
|
download?: string;
|
|
5081
5093
|
/**
|
|
5082
|
-
*
|
|
5094
|
+
* Shows a gradient overlay over the media slot to improve text legibility on bright images or videos.
|
|
5083
5095
|
* @default false
|
|
5084
5096
|
*/
|
|
5085
5097
|
gradient?: boolean;
|
|
5086
5098
|
/**
|
|
5087
|
-
*
|
|
5099
|
+
* Sets the URL the tile's anchor element navigates to when clicked.
|
|
5088
5100
|
*/
|
|
5089
5101
|
href: string;
|
|
5090
5102
|
/**
|
|
5091
|
-
*
|
|
5103
|
+
* Sets the accessible label text of the link rendered inside the tile.
|
|
5092
5104
|
*/
|
|
5093
5105
|
label: string;
|
|
5094
5106
|
/**
|
|
5095
|
-
* Sets the `rel` attribute on the link.
|
|
5107
|
+
* Sets the `rel` attribute on the link (e.g. `noopener`).
|
|
5096
5108
|
*/
|
|
5097
5109
|
rel?: string;
|
|
5098
5110
|
/**
|
|
5099
|
-
*
|
|
5111
|
+
* Sets the font size of the description text in the tile content area. Supports responsive breakpoint values.
|
|
5100
5112
|
* @default 'medium'
|
|
5101
5113
|
*/
|
|
5102
5114
|
size?: BreakpointCustomizable<LinkTileSize>;
|
|
5103
5115
|
/**
|
|
5104
|
-
* Specifies where to open the linked
|
|
5116
|
+
* Specifies where to open the linked URL (e.g. `_self`, `_blank`).
|
|
5105
5117
|
* @default '_self'
|
|
5106
5118
|
*/
|
|
5107
5119
|
target?: LinkTileTarget;
|
|
5108
5120
|
/**
|
|
5109
|
-
*
|
|
5121
|
+
* Sets the font weight of the description text in the tile content area. Supports responsive breakpoint values.
|
|
5110
5122
|
* @default 'semi-bold'
|
|
5111
5123
|
*/
|
|
5112
5124
|
weight?: BreakpointCustomizable<LinkTileWeight>;
|
|
@@ -5131,46 +5143,46 @@ declare class PLinkTile extends BaseComponent {
|
|
|
5131
5143
|
|
|
5132
5144
|
type PLinkTileProductProps = {
|
|
5133
5145
|
/**
|
|
5134
|
-
*
|
|
5146
|
+
* Sets the width-to-height ratio of the tile media area. Supports responsive breakpoint values.
|
|
5135
5147
|
* @default '3/4'
|
|
5136
5148
|
*/
|
|
5137
5149
|
aspectRatio?: BreakpointCustomizable<LinkTileProductAspectRatio>;
|
|
5138
5150
|
/**
|
|
5139
|
-
*
|
|
5151
|
+
* Sets an optional short description providing additional product details below the price.
|
|
5140
5152
|
*/
|
|
5141
5153
|
description?: string;
|
|
5142
5154
|
/**
|
|
5143
|
-
*
|
|
5155
|
+
* Sets the product name displayed prominently at the top of the tile.
|
|
5144
5156
|
*/
|
|
5145
5157
|
heading: string;
|
|
5146
5158
|
/**
|
|
5147
|
-
*
|
|
5159
|
+
* Sets the URL the tile navigates to when clicked. Alternatively, provide a slotted anchor element.
|
|
5148
5160
|
*/
|
|
5149
5161
|
href?: string;
|
|
5150
5162
|
/**
|
|
5151
|
-
* Shows a like button.
|
|
5163
|
+
* Shows a like/bookmark button so users can save the product.
|
|
5152
5164
|
* @default true
|
|
5153
5165
|
*/
|
|
5154
5166
|
likeButton?: boolean;
|
|
5155
5167
|
/**
|
|
5156
|
-
*
|
|
5168
|
+
* Reflects whether the product is currently liked — controls the filled state of the like button.
|
|
5157
5169
|
* @default false
|
|
5158
5170
|
*/
|
|
5159
5171
|
liked?: boolean;
|
|
5160
5172
|
/**
|
|
5161
|
-
*
|
|
5173
|
+
* Sets the current retail price of the product, displayed with or without a discount.
|
|
5162
5174
|
*/
|
|
5163
5175
|
price: string;
|
|
5164
5176
|
/**
|
|
5165
|
-
*
|
|
5177
|
+
* Sets the original recommended retail price shown with a strikethrough to indicate a discount. Requires `price` to be set.
|
|
5166
5178
|
*/
|
|
5167
5179
|
priceOriginal?: string;
|
|
5168
5180
|
/**
|
|
5169
|
-
* Sets the `rel` attribute on the link.
|
|
5181
|
+
* Sets the `rel` attribute on the link (e.g. `noopener`).
|
|
5170
5182
|
*/
|
|
5171
5183
|
rel?: string;
|
|
5172
5184
|
/**
|
|
5173
|
-
* Specifies where to open the linked
|
|
5185
|
+
* Specifies where to open the linked URL (e.g. `_self`, `_blank`).
|
|
5174
5186
|
* @default '_self'
|
|
5175
5187
|
*/
|
|
5176
5188
|
target?: LinkTileProductTarget;
|
|
@@ -5193,36 +5205,36 @@ declare class PLinkTileProduct extends BaseComponent {
|
|
|
5193
5205
|
|
|
5194
5206
|
type PModalProps = {
|
|
5195
5207
|
/**
|
|
5196
|
-
* Sets ARIA attributes.
|
|
5208
|
+
* Sets ARIA attributes on the dialog element for improved accessibility when no visible heading is present.
|
|
5197
5209
|
*/
|
|
5198
5210
|
aria?: SelectedAriaAttributes<ModalAriaAttribute>;
|
|
5199
5211
|
/**
|
|
5200
|
-
*
|
|
5212
|
+
* Sets the backdrop style. Use `blur` when the modal is opened by user interaction; use `shading` when opened automatically (e.g. Cookie Consent).
|
|
5201
5213
|
* @default 'blur'
|
|
5202
5214
|
*/
|
|
5203
5215
|
backdrop?: ModalBackdrop;
|
|
5204
5216
|
/**
|
|
5205
|
-
*
|
|
5217
|
+
* Sets the background color of the modal panel (`canvas` or `surface`).
|
|
5206
5218
|
* @default 'canvas'
|
|
5207
5219
|
*/
|
|
5208
5220
|
background?: ModalBackground;
|
|
5209
5221
|
/**
|
|
5210
|
-
*
|
|
5222
|
+
* When enabled, clicking the backdrop will not close the modal.
|
|
5211
5223
|
* @default false
|
|
5212
5224
|
*/
|
|
5213
5225
|
disableBackdropClick?: boolean;
|
|
5214
5226
|
/**
|
|
5215
|
-
*
|
|
5227
|
+
* Shows a dismiss button in the modal header so the user can manually close it.
|
|
5216
5228
|
* @default true
|
|
5217
5229
|
*/
|
|
5218
5230
|
dismissButton?: boolean;
|
|
5219
5231
|
/**
|
|
5220
|
-
*
|
|
5232
|
+
* Expands the modal to the full viewport size, intended for mobile use cases. Supports responsive breakpoint values.
|
|
5221
5233
|
* @default false
|
|
5222
5234
|
*/
|
|
5223
5235
|
fullscreen?: BreakpointCustomizable<boolean>;
|
|
5224
5236
|
/**
|
|
5225
|
-
*
|
|
5237
|
+
* Controls whether the modal dialog is visible.
|
|
5226
5238
|
* @default false
|
|
5227
5239
|
*/
|
|
5228
5240
|
open: boolean;
|
|
@@ -5244,32 +5256,32 @@ declare class PModal extends BaseComponent {
|
|
|
5244
5256
|
|
|
5245
5257
|
type PModelSignatureProps = {
|
|
5246
5258
|
/**
|
|
5247
|
-
*
|
|
5259
|
+
* Sets the fill color of the signature using PDS color tokens.
|
|
5248
5260
|
* @default 'primary'
|
|
5249
5261
|
*/
|
|
5250
5262
|
color?: ModelSignatureColor;
|
|
5251
5263
|
/**
|
|
5252
|
-
* Sets the browser's fetch priority hint for the
|
|
5264
|
+
* Sets the browser's fetch priority hint for the signature asset (`auto`, `high`, `low`).
|
|
5253
5265
|
* @default 'auto'
|
|
5254
5266
|
*/
|
|
5255
5267
|
fetchPriority?: ModelSignatureFetchPriority;
|
|
5256
5268
|
/**
|
|
5257
|
-
*
|
|
5269
|
+
* Defers loading the signature until it enters the viewport to improve initial page performance.
|
|
5258
5270
|
* @default false
|
|
5259
5271
|
*/
|
|
5260
5272
|
lazy?: boolean;
|
|
5261
5273
|
/**
|
|
5262
|
-
*
|
|
5274
|
+
* Selects the Porsche model whose typographic signature SVG is displayed.
|
|
5263
5275
|
* @default '911'
|
|
5264
5276
|
*/
|
|
5265
5277
|
model?: ModelSignatureModel;
|
|
5266
5278
|
/**
|
|
5267
|
-
* When
|
|
5279
|
+
* When enabled, adds invisible padding so all model signatures visually align to a consistent baseline.
|
|
5268
5280
|
* @default true
|
|
5269
5281
|
*/
|
|
5270
5282
|
safeZone?: boolean;
|
|
5271
5283
|
/**
|
|
5272
|
-
*
|
|
5284
|
+
* Sets the display size of the signature using predefined PDS sizes. Use `inherit` with a CSS `width` or `height` on the host for custom sizing.
|
|
5273
5285
|
* @default 'small'
|
|
5274
5286
|
*/
|
|
5275
5287
|
size?: ModelSignatureSize;
|
|
@@ -5287,12 +5299,12 @@ declare class PModelSignature extends BaseComponent {
|
|
|
5287
5299
|
|
|
5288
5300
|
type PMultiSelectOptionProps = {
|
|
5289
5301
|
/**
|
|
5290
|
-
* Disables the option.
|
|
5302
|
+
* Disables the option, preventing it from being selected.
|
|
5291
5303
|
* @default false
|
|
5292
5304
|
*/
|
|
5293
5305
|
disabled?: boolean;
|
|
5294
5306
|
/**
|
|
5295
|
-
*
|
|
5307
|
+
* Sets the value submitted with the form data when this option is selected in the parent multi-select.
|
|
5296
5308
|
*/
|
|
5297
5309
|
value: string | number;
|
|
5298
5310
|
};
|
|
@@ -5305,12 +5317,12 @@ declare class PMultiSelectOption extends BaseComponent {
|
|
|
5305
5317
|
|
|
5306
5318
|
type POptgroupProps = {
|
|
5307
5319
|
/**
|
|
5308
|
-
* Disables the
|
|
5320
|
+
* Disables all options in the group, preventing any of them from being selected.
|
|
5309
5321
|
* @default false
|
|
5310
5322
|
*/
|
|
5311
5323
|
disabled?: boolean;
|
|
5312
5324
|
/**
|
|
5313
|
-
*
|
|
5325
|
+
* Sets the visible group heading displayed above the grouped options.
|
|
5314
5326
|
*/
|
|
5315
5327
|
label?: string;
|
|
5316
5328
|
};
|
|
@@ -5323,27 +5335,27 @@ declare class POptgroup extends BaseComponent {
|
|
|
5323
5335
|
|
|
5324
5336
|
type PPaginationProps = {
|
|
5325
5337
|
/**
|
|
5326
|
-
*
|
|
5338
|
+
* Sets the one-based index of the currently active page; update this prop to navigate programmatically.
|
|
5327
5339
|
* @default 1
|
|
5328
5340
|
*/
|
|
5329
5341
|
activePage: number;
|
|
5330
5342
|
/**
|
|
5331
|
-
*
|
|
5343
|
+
* Overrides the default ARIA label strings used for the previous, next, and page number buttons to support localisation.
|
|
5332
5344
|
* @default { root: 'Pagination', prev: 'Previous page', next: 'Next page', page: 'Page', }
|
|
5333
5345
|
*/
|
|
5334
5346
|
intl?: PaginationInternationalization;
|
|
5335
5347
|
/**
|
|
5336
|
-
*
|
|
5348
|
+
* Sets the number of items displayed per page, used together with `totalItemsCount` to compute the page count.
|
|
5337
5349
|
* @default 1
|
|
5338
5350
|
*/
|
|
5339
5351
|
itemsPerPage?: number;
|
|
5340
5352
|
/**
|
|
5341
|
-
*
|
|
5353
|
+
* Shows or hides the button that jumps directly to the last page of the pagination.
|
|
5342
5354
|
* @default true
|
|
5343
5355
|
*/
|
|
5344
5356
|
showLastPage?: boolean;
|
|
5345
5357
|
/**
|
|
5346
|
-
*
|
|
5358
|
+
* Sets the total number of items in the dataset, used to calculate the number of pages.
|
|
5347
5359
|
* @default 1
|
|
5348
5360
|
*/
|
|
5349
5361
|
totalItemsCount: number;
|
|
@@ -5361,15 +5373,15 @@ declare class PPagination extends BaseComponent {
|
|
|
5361
5373
|
|
|
5362
5374
|
type PPopoverProps = {
|
|
5363
5375
|
/**
|
|
5364
|
-
* Sets ARIA attributes.
|
|
5376
|
+
* Sets ARIA attributes on the popover panel to improve accessibility for screen readers.
|
|
5365
5377
|
*/
|
|
5366
5378
|
aria?: SelectedAriaAttributes<PopoverAriaAttribute>;
|
|
5367
5379
|
/**
|
|
5368
|
-
*
|
|
5380
|
+
* Sets the text content displayed inside the popover panel when it is open, providing contextual help or information.
|
|
5369
5381
|
*/
|
|
5370
5382
|
description?: string;
|
|
5371
5383
|
/**
|
|
5372
|
-
*
|
|
5384
|
+
* Sets the preferred direction for the popover to open relative to its trigger button. Falls back to the direction with the most available viewport space.
|
|
5373
5385
|
* @default 'bottom'
|
|
5374
5386
|
*/
|
|
5375
5387
|
direction?: PopoverDirection;
|
|
@@ -5384,21 +5396,21 @@ declare class PPopover extends BaseComponent {
|
|
|
5384
5396
|
|
|
5385
5397
|
type PRadioGroupOptionProps = {
|
|
5386
5398
|
/**
|
|
5387
|
-
*
|
|
5399
|
+
* Prevents this option from being selected and excludes its value from form submissions while it is disabled.
|
|
5388
5400
|
* @default false
|
|
5389
5401
|
*/
|
|
5390
5402
|
disabled?: boolean;
|
|
5391
5403
|
/**
|
|
5392
|
-
*
|
|
5404
|
+
* Sets the visible label text displayed next to the radio button that the user reads to identify the option.
|
|
5393
5405
|
*/
|
|
5394
5406
|
label?: string;
|
|
5395
5407
|
/**
|
|
5396
|
-
* @experimental
|
|
5408
|
+
* @experimental Disables this option and shows a spinner to indicate that this particular option is in a loading state.
|
|
5397
5409
|
* @default false
|
|
5398
5410
|
*/
|
|
5399
5411
|
loading?: boolean;
|
|
5400
5412
|
/**
|
|
5401
|
-
*
|
|
5413
|
+
* Sets the value submitted with the form data when this radio option is selected within its parent group.
|
|
5402
5414
|
*/
|
|
5403
5415
|
value?: string;
|
|
5404
5416
|
};
|
|
@@ -5418,11 +5430,11 @@ type PScrollerProps = {
|
|
|
5418
5430
|
*/
|
|
5419
5431
|
alignScrollIndicator?: ScrollerAlignScrollIndicator;
|
|
5420
5432
|
/**
|
|
5421
|
-
*
|
|
5433
|
+
* Sets ARIA role and attributes on the scroller's scroll container, useful for tablist navigation patterns and additional accessibility context.
|
|
5422
5434
|
*/
|
|
5423
5435
|
aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
|
|
5424
5436
|
/**
|
|
5425
|
-
*
|
|
5437
|
+
* Reduces the scroller's padding and the gap between slotted items for use in dense layouts.
|
|
5426
5438
|
*/
|
|
5427
5439
|
compact?: boolean;
|
|
5428
5440
|
/**
|
|
@@ -5430,7 +5442,7 @@ type PScrollerProps = {
|
|
|
5430
5442
|
*/
|
|
5431
5443
|
scrollToPosition?: ScrollerScrollToPosition;
|
|
5432
5444
|
/**
|
|
5433
|
-
*
|
|
5445
|
+
* Shows the browser's native scrollbar inside the scroller, in addition to the scroll indicator arrows.
|
|
5434
5446
|
* @default false
|
|
5435
5447
|
*/
|
|
5436
5448
|
scrollbar?: boolean;
|
|
@@ -5455,28 +5467,28 @@ declare class PScroller extends BaseComponent {
|
|
|
5455
5467
|
|
|
5456
5468
|
type PSegmentedControlItemProps = {
|
|
5457
5469
|
/**
|
|
5458
|
-
* Sets ARIA attributes.
|
|
5470
|
+
* Sets ARIA attributes on the item's button element to improve accessibility for screen readers.
|
|
5459
5471
|
*/
|
|
5460
5472
|
aria?: SelectedAriaAttributes<SegmentedControlItemAriaAttribute>;
|
|
5461
5473
|
/**
|
|
5462
|
-
*
|
|
5474
|
+
* Prevents this item from being selected and visually dims it; the parent's value will not change to this item's value.
|
|
5463
5475
|
* @default false
|
|
5464
5476
|
*/
|
|
5465
5477
|
disabled?: boolean;
|
|
5466
5478
|
/**
|
|
5467
|
-
*
|
|
5479
|
+
* Sets an icon rendered inside the item button using an icon name from the PDS icon library.
|
|
5468
5480
|
*/
|
|
5469
5481
|
icon?: SegmentedControlItemIcon;
|
|
5470
5482
|
/**
|
|
5471
|
-
*
|
|
5483
|
+
* Sets a URL to a custom SVG icon for the item button, overriding the built-in icon set.
|
|
5472
5484
|
*/
|
|
5473
5485
|
iconSource?: string;
|
|
5474
5486
|
/**
|
|
5475
|
-
*
|
|
5487
|
+
* Sets a visible text label rendered inside the item button, used when no slotted content is provided.
|
|
5476
5488
|
*/
|
|
5477
5489
|
label?: string;
|
|
5478
5490
|
/**
|
|
5479
|
-
*
|
|
5491
|
+
* Sets the value emitted by the parent `p-segmented-control` when this item is selected. This property is **required**.
|
|
5480
5492
|
*/
|
|
5481
5493
|
value: string | number;
|
|
5482
5494
|
};
|
|
@@ -5493,12 +5505,12 @@ declare class PSegmentedControlItem extends BaseComponent {
|
|
|
5493
5505
|
|
|
5494
5506
|
type PSelectOptionProps = {
|
|
5495
5507
|
/**
|
|
5496
|
-
*
|
|
5508
|
+
* Prevents the option from being selected and visually dims it to indicate it is unavailable.
|
|
5497
5509
|
* @default false
|
|
5498
5510
|
*/
|
|
5499
5511
|
disabled?: boolean;
|
|
5500
5512
|
/**
|
|
5501
|
-
*
|
|
5513
|
+
* Sets the value submitted with the form data when this option is selected in the parent select control.
|
|
5502
5514
|
*/
|
|
5503
5515
|
value?: string | number | null;
|
|
5504
5516
|
};
|
|
@@ -5511,26 +5523,26 @@ declare class PSelectOption extends BaseComponent {
|
|
|
5511
5523
|
|
|
5512
5524
|
type PSheetProps = {
|
|
5513
5525
|
/**
|
|
5514
|
-
* Sets ARIA attributes.
|
|
5526
|
+
* Sets ARIA attributes on the sheet dialog element for improved accessibility when the default `aria-label` is insufficient.
|
|
5515
5527
|
*/
|
|
5516
5528
|
aria?: SelectedAriaAttributes<SheetAriaAttribute>;
|
|
5517
5529
|
/**
|
|
5518
|
-
*
|
|
5530
|
+
* Sets the background color of the sheet panel (`canvas` or `surface`).
|
|
5519
5531
|
* @default 'canvas'
|
|
5520
5532
|
*/
|
|
5521
5533
|
background?: SheetBackground;
|
|
5522
5534
|
/**
|
|
5523
|
-
*
|
|
5535
|
+
* When enabled, clicking the backdrop will not close the sheet.
|
|
5524
5536
|
* @default false
|
|
5525
5537
|
*/
|
|
5526
5538
|
disableBackdropClick?: boolean;
|
|
5527
5539
|
/**
|
|
5528
|
-
*
|
|
5540
|
+
* Shows a dismiss button in the sheet header so users can manually close it.
|
|
5529
5541
|
* @default true
|
|
5530
5542
|
*/
|
|
5531
5543
|
dismissButton?: boolean;
|
|
5532
5544
|
/**
|
|
5533
|
-
*
|
|
5545
|
+
* Controls whether the sheet panel slides in from the bottom and is visible to the user.
|
|
5534
5546
|
* @default false
|
|
5535
5547
|
*/
|
|
5536
5548
|
open: boolean;
|
|
@@ -5550,16 +5562,16 @@ declare class PSheet extends BaseComponent {
|
|
|
5550
5562
|
|
|
5551
5563
|
type PSpinnerProps = {
|
|
5552
5564
|
/**
|
|
5553
|
-
* Sets ARIA attributes.
|
|
5565
|
+
* Sets ARIA attributes on the spinner's live region element; use `aria-label` to provide a descriptive loading message for screen readers.
|
|
5554
5566
|
*/
|
|
5555
5567
|
aria?: SelectedAriaAttributes<SpinnerAriaAttribute>;
|
|
5556
5568
|
/**
|
|
5557
|
-
*
|
|
5569
|
+
* Sets the color of the spinning indicator using PDS semantic color tokens (e.g. `primary`, `contrast-high`, `inherit`).
|
|
5558
5570
|
* @default 'primary'
|
|
5559
5571
|
*/
|
|
5560
5572
|
color?: SpinnerColor;
|
|
5561
5573
|
/**
|
|
5562
|
-
*
|
|
5574
|
+
* Sets the size of the spinner using the PDS typographic scale. Use `inherit` to derive the size from the parent element's font-size. Supports responsive breakpoint values.
|
|
5563
5575
|
* @default 'sm'
|
|
5564
5576
|
*/
|
|
5565
5577
|
size?: BreakpointCustomizable<SpinnerSize>;
|
|
@@ -5589,7 +5601,7 @@ type PStepperHorizontalItemProps = {
|
|
|
5589
5601
|
*/
|
|
5590
5602
|
disabled?: boolean;
|
|
5591
5603
|
/**
|
|
5592
|
-
* The
|
|
5604
|
+
* The current progression state of the step. Use `current` for the active step, `complete` for finished steps, `warning` for steps with issues. Leave unset for future steps.
|
|
5593
5605
|
*/
|
|
5594
5606
|
state?: StepperHorizontalItemState;
|
|
5595
5607
|
};
|
|
@@ -5602,37 +5614,37 @@ declare class PStepperHorizontalItem extends BaseComponent {
|
|
|
5602
5614
|
|
|
5603
5615
|
type PSwitchProps = {
|
|
5604
5616
|
/**
|
|
5605
|
-
*
|
|
5617
|
+
* Sets the position of the slotted label relative to the switch toggle, either before (`start`) or after (`end`) it. Supports responsive breakpoint values.
|
|
5606
5618
|
* @default 'end'
|
|
5607
5619
|
*/
|
|
5608
5620
|
alignLabel?: BreakpointCustomizable<SwitchAlignLabel>;
|
|
5609
5621
|
/**
|
|
5610
|
-
*
|
|
5622
|
+
* Reflects the switch's current on/off state and allows setting the initial checked value when the component first renders.
|
|
5611
5623
|
* @default false
|
|
5612
5624
|
*/
|
|
5613
5625
|
checked?: boolean;
|
|
5614
5626
|
/**
|
|
5615
|
-
*
|
|
5627
|
+
* Reduces the switch size and spacing for use in dense layouts where vertical space is limited.
|
|
5616
5628
|
* @default false
|
|
5617
5629
|
*/
|
|
5618
5630
|
compact?: boolean;
|
|
5619
5631
|
/**
|
|
5620
|
-
*
|
|
5632
|
+
* Prevents user interaction with the switch and blocks all click and keyboard events while it is disabled.
|
|
5621
5633
|
* @default false
|
|
5622
5634
|
*/
|
|
5623
5635
|
disabled?: boolean;
|
|
5624
5636
|
/**
|
|
5625
|
-
*
|
|
5637
|
+
* Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
|
|
5626
5638
|
* @default false
|
|
5627
5639
|
*/
|
|
5628
5640
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
5629
5641
|
/**
|
|
5630
|
-
* Disables the switch and shows a loading
|
|
5642
|
+
* Disables the switch and shows a loading spinner to indicate an ongoing asynchronous toggle operation.
|
|
5631
5643
|
* @default false
|
|
5632
5644
|
*/
|
|
5633
5645
|
loading?: boolean;
|
|
5634
5646
|
/**
|
|
5635
|
-
*
|
|
5647
|
+
* Expands the space between the switch toggle and its label to fill the full available width of the container. Supports responsive breakpoint values.
|
|
5636
5648
|
* @default false
|
|
5637
5649
|
*/
|
|
5638
5650
|
stretch?: BreakpointCustomizable<boolean>;
|
|
@@ -5652,21 +5664,21 @@ declare class PSwitch extends BaseComponent {
|
|
|
5652
5664
|
|
|
5653
5665
|
type PTableProps = {
|
|
5654
5666
|
/**
|
|
5655
|
-
*
|
|
5667
|
+
* Sets a screen-reader-only accessible caption that describes the table's content; it is not visible in the browser. Use an element with `slot="caption"` for a visible caption instead.
|
|
5656
5668
|
*/
|
|
5657
5669
|
caption?: string;
|
|
5658
5670
|
/**
|
|
5659
|
-
*
|
|
5671
|
+
* Reduces the cell padding and spacing for a more condensed table layout in data-dense UIs.
|
|
5660
5672
|
* @default false
|
|
5661
5673
|
*/
|
|
5662
5674
|
compact?: boolean;
|
|
5663
5675
|
/**
|
|
5664
|
-
* Controls the layout
|
|
5676
|
+
* Controls the CSS `table-layout` algorithm: `auto` sizes columns to fit their content, `fixed` distributes width equally.
|
|
5665
5677
|
* @default 'auto'
|
|
5666
5678
|
*/
|
|
5667
5679
|
layout?: TableLayout;
|
|
5668
5680
|
/**
|
|
5669
|
-
* @experimental Makes the scroll indicator sticky at the
|
|
5681
|
+
* @experimental Makes the scroll position indicator sticky at the viewport edge while scrolling, indicating overflow in the table.
|
|
5670
5682
|
* @default false
|
|
5671
5683
|
*/
|
|
5672
5684
|
sticky?: boolean;
|
|
@@ -5702,17 +5714,17 @@ declare class PTableHead extends BaseComponent {
|
|
|
5702
5714
|
|
|
5703
5715
|
type PTableHeadCellProps = {
|
|
5704
5716
|
/**
|
|
5705
|
-
* Hides the label
|
|
5717
|
+
* Hides the visible column label while keeping it accessible to screen readers. Only applies when `sort` is not set.
|
|
5706
5718
|
* @default false
|
|
5707
5719
|
*/
|
|
5708
5720
|
hideLabel?: boolean;
|
|
5709
5721
|
/**
|
|
5710
|
-
* Allows
|
|
5722
|
+
* Allows the column header text to wrap onto multiple lines instead of being truncated to a single line.
|
|
5711
5723
|
* @default false
|
|
5712
5724
|
*/
|
|
5713
5725
|
multiline?: boolean;
|
|
5714
5726
|
/**
|
|
5715
|
-
*
|
|
5727
|
+
* Configures sorting behavior for this column by providing an `id`, `active` state, and current `direction` (`asc` or `desc`).
|
|
5716
5728
|
*/
|
|
5717
5729
|
sort?: TableHeadCellSort;
|
|
5718
5730
|
};
|
|
@@ -5738,21 +5750,25 @@ declare class PTableRow extends BaseComponent {
|
|
|
5738
5750
|
|
|
5739
5751
|
type PTabsProps = {
|
|
5740
5752
|
/**
|
|
5741
|
-
*
|
|
5753
|
+
* Sets the zero-based index of the currently active tab; update this prop to switch tabs programmatically.
|
|
5742
5754
|
* @default 0
|
|
5743
5755
|
*/
|
|
5744
5756
|
activeTabIndex?: number;
|
|
5745
5757
|
/**
|
|
5746
|
-
*
|
|
5758
|
+
* Sets ARIA attributes on the tablist, such as `aria-label` and `aria-description`.
|
|
5759
|
+
*/
|
|
5760
|
+
aria?: SelectedAriaAttributes<TabsAriaAttribute>;
|
|
5761
|
+
/**
|
|
5762
|
+
* Sets the background color of the tabs bar. Use `frosted` only when placed on top of images, videos, or gradients.
|
|
5747
5763
|
* @default 'none'
|
|
5748
5764
|
*/
|
|
5749
5765
|
background?: TabsBackground;
|
|
5750
5766
|
/**
|
|
5751
|
-
*
|
|
5767
|
+
* Reduces the tab height and padding for use in dense layouts where vertical space is limited.
|
|
5752
5768
|
*/
|
|
5753
5769
|
compact?: boolean;
|
|
5754
5770
|
/**
|
|
5755
|
-
*
|
|
5771
|
+
* Sets the font size of the tab labels using the PDS typographic scale. Supports responsive breakpoint values.
|
|
5756
5772
|
* @default 'small'
|
|
5757
5773
|
*/
|
|
5758
5774
|
size?: BreakpointCustomizable<TabsSize>;
|
|
@@ -5764,6 +5780,7 @@ type PTabsProps = {
|
|
|
5764
5780
|
};
|
|
5765
5781
|
declare class PTabs extends BaseComponent {
|
|
5766
5782
|
activeTabIndex?: number;
|
|
5783
|
+
aria?: SelectedAriaAttributes<TabsAriaAttribute>;
|
|
5767
5784
|
background?: TabsBackground;
|
|
5768
5785
|
compact?: boolean;
|
|
5769
5786
|
size?: BreakpointCustomizable<TabsSize>;
|
|
@@ -5771,25 +5788,29 @@ declare class PTabs extends BaseComponent {
|
|
|
5771
5788
|
weight?: TabsWeight;
|
|
5772
5789
|
update: EventEmitter<CustomEvent<TabsUpdateEventDetail>>;
|
|
5773
5790
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabs, never>;
|
|
5774
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTabs, "p-tabs,[p-tabs]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
5791
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabs, "p-tabs,[p-tabs]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
5775
5792
|
}
|
|
5776
5793
|
|
|
5777
5794
|
type PTabsBarProps = {
|
|
5778
5795
|
/**
|
|
5779
|
-
*
|
|
5796
|
+
* Sets the zero-based index of the currently active tab. Pass `undefined` to render all tabs in an unselected state.
|
|
5780
5797
|
*/
|
|
5781
5798
|
activeTabIndex?: number | undefined;
|
|
5782
5799
|
/**
|
|
5783
|
-
*
|
|
5800
|
+
* Sets ARIA attributes on the tablist, such as `aria-label` and `aria-description`.
|
|
5801
|
+
*/
|
|
5802
|
+
aria?: SelectedAriaAttributes<TabsBarAriaAttribute>;
|
|
5803
|
+
/**
|
|
5804
|
+
* Sets the background color of the tabs bar. Use `frosted` only when placed on top of images, videos, or gradients.
|
|
5784
5805
|
* @default 'none'
|
|
5785
5806
|
*/
|
|
5786
5807
|
background?: TabsBarBackground;
|
|
5787
5808
|
/**
|
|
5788
|
-
*
|
|
5809
|
+
* Reduces the tab height and padding for use in dense layouts where vertical space is limited.
|
|
5789
5810
|
*/
|
|
5790
5811
|
compact?: boolean;
|
|
5791
5812
|
/**
|
|
5792
|
-
*
|
|
5813
|
+
* Sets the font size of the tab labels using the PDS typographic scale. Supports responsive breakpoint values.
|
|
5793
5814
|
* @default 'small'
|
|
5794
5815
|
*/
|
|
5795
5816
|
size?: BreakpointCustomizable<TabsBarSize>;
|
|
@@ -5801,6 +5822,7 @@ type PTabsBarProps = {
|
|
|
5801
5822
|
};
|
|
5802
5823
|
declare class PTabsBar extends BaseComponent {
|
|
5803
5824
|
activeTabIndex?: number | undefined;
|
|
5825
|
+
aria?: SelectedAriaAttributes<TabsBarAriaAttribute>;
|
|
5804
5826
|
background?: TabsBarBackground;
|
|
5805
5827
|
compact?: boolean;
|
|
5806
5828
|
size?: BreakpointCustomizable<TabsBarSize>;
|
|
@@ -5808,12 +5830,12 @@ declare class PTabsBar extends BaseComponent {
|
|
|
5808
5830
|
weight?: TabsBarWeight;
|
|
5809
5831
|
update: EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>;
|
|
5810
5832
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabsBar, never>;
|
|
5811
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTabsBar, "p-tabs-bar,[p-tabs-bar]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
5833
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabsBar, "p-tabs-bar,[p-tabs-bar]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
5812
5834
|
}
|
|
5813
5835
|
|
|
5814
5836
|
type PTabsItemProps = {
|
|
5815
5837
|
/**
|
|
5816
|
-
*
|
|
5838
|
+
* Sets the label text displayed in the tab navigation button that the user clicks to activate this tab's content.
|
|
5817
5839
|
*/
|
|
5818
5840
|
label: string;
|
|
5819
5841
|
};
|
|
@@ -5825,21 +5847,21 @@ declare class PTabsItem extends BaseComponent {
|
|
|
5825
5847
|
|
|
5826
5848
|
type PTagProps = {
|
|
5827
5849
|
/**
|
|
5828
|
-
*
|
|
5850
|
+
* Reduces the tag's padding and height for use in dense layouts where vertical space is limited.
|
|
5829
5851
|
* @default false
|
|
5830
5852
|
*/
|
|
5831
5853
|
compact?: boolean;
|
|
5832
5854
|
/**
|
|
5833
|
-
*
|
|
5855
|
+
* Sets the icon displayed inside the tag alongside the label. Use `none` to render the tag without an icon.
|
|
5834
5856
|
* @default 'none'
|
|
5835
5857
|
*/
|
|
5836
5858
|
icon?: TagIcon;
|
|
5837
5859
|
/**
|
|
5838
|
-
*
|
|
5860
|
+
* Sets a URL to a custom SVG icon, overriding the built-in icon set when a brand-specific icon is needed.
|
|
5839
5861
|
*/
|
|
5840
5862
|
iconSource?: string;
|
|
5841
5863
|
/**
|
|
5842
|
-
*
|
|
5864
|
+
* Sets the visual style of the tag, which controls its background and text colors (e.g. `primary`, `secondary`, `notification-info`).
|
|
5843
5865
|
* @default 'secondary'
|
|
5844
5866
|
*/
|
|
5845
5867
|
variant?: TagVariant;
|
|
@@ -5855,16 +5877,16 @@ declare class PTag extends BaseComponent {
|
|
|
5855
5877
|
|
|
5856
5878
|
type PTagDismissibleProps = {
|
|
5857
5879
|
/**
|
|
5858
|
-
* Sets ARIA attributes.
|
|
5880
|
+
* Sets ARIA attributes on the dismiss button element, for example use `aria-label` to provide a descriptive close action for screen readers.
|
|
5859
5881
|
*/
|
|
5860
5882
|
aria?: SelectedAriaAttributes<TagDismissibleAriaAttribute>;
|
|
5861
5883
|
/**
|
|
5862
|
-
*
|
|
5884
|
+
* Reduces the tag's padding and height for use in dense layouts where vertical space is limited.
|
|
5863
5885
|
* @default false
|
|
5864
5886
|
*/
|
|
5865
5887
|
compact?: boolean;
|
|
5866
5888
|
/**
|
|
5867
|
-
*
|
|
5889
|
+
* Sets the visible label text displayed inside the tag alongside the dismiss button.
|
|
5868
5890
|
*/
|
|
5869
5891
|
label?: string;
|
|
5870
5892
|
};
|
|
@@ -5927,7 +5949,7 @@ declare class PText extends BaseComponent {
|
|
|
5927
5949
|
|
|
5928
5950
|
type PTextListProps = {
|
|
5929
5951
|
/**
|
|
5930
|
-
*
|
|
5952
|
+
* Sets the list type to either `unordered` (bulleted) or `ordered` (numbered), controlling the rendered HTML element (`ul` vs `ol`).
|
|
5931
5953
|
* @default 'unordered'
|
|
5932
5954
|
*/
|
|
5933
5955
|
type?: TextListType;
|
|
@@ -5952,20 +5974,20 @@ declare class PToast extends BaseComponent {
|
|
|
5952
5974
|
|
|
5953
5975
|
type PWordmarkProps = {
|
|
5954
5976
|
/**
|
|
5955
|
-
* Sets ARIA attributes.
|
|
5977
|
+
* Sets ARIA attributes on the anchor element to improve accessibility when the wordmark is used as a link.
|
|
5956
5978
|
*/
|
|
5957
5979
|
aria?: SelectedAriaAttributes<WordmarkAriaAttribute>;
|
|
5958
5980
|
/**
|
|
5959
|
-
* When
|
|
5981
|
+
* When set, wraps the wordmark in an anchor element that navigates to the given URL on click.
|
|
5960
5982
|
*/
|
|
5961
5983
|
href?: string;
|
|
5962
5984
|
/**
|
|
5963
|
-
*
|
|
5985
|
+
* Sets the display size of the Porsche wordmark SVG using predefined PDS size tokens (`small`, `medium`, `large`, `inherit`).
|
|
5964
5986
|
* @default 'small'
|
|
5965
5987
|
*/
|
|
5966
5988
|
size?: WordmarkSize;
|
|
5967
5989
|
/**
|
|
5968
|
-
* Specifies where to open the linked
|
|
5990
|
+
* Specifies where to open the linked URL when `href` is set (e.g. `_self`, `_blank`).
|
|
5969
5991
|
* @default '_self'
|
|
5970
5992
|
*/
|
|
5971
5993
|
target?: WordmarkTarget;
|
|
@@ -6003,4 +6025,4 @@ declare class ToastManager {
|
|
|
6003
6025
|
}
|
|
6004
6026
|
|
|
6005
6027
|
export { DECLARATIONS, PAccordion, PAiTag, PBanner, PButton, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFlag, PFlyout, PHeading, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkTile, PLinkTileProduct, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextList, PTextListItem, PTextarea, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
6006
|
-
export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AiTagLocale, AiTagVariant, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerPosition, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureColor, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasBackground, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingHyphens, HeadingSize, HeadingTag, HeadingWeight, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputMonthBlurEventDetail, InputMonthChangeEventDetail, InputMonthInputEventDetail, InputMonthState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchAriaAttribute, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, InputWeekBlurEventDetail, InputWeekChangeEventDetail, InputWeekInputEventDetail, InputWeekState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureColor, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PAccordionProps, PAiTagProps, PBannerProps, PButtonProps, PButtonPureProps, PButtonTileProps, PCanvasProps, PCarouselProps, PCheckboxProps, PCrestProps, PDisplayProps, PDividerProps, PDrilldownItemProps, PDrilldownLinkProps, PDrilldownProps, PFieldsetProps, PFlagProps, PFlyoutProps, PHeadingProps, PIconProps, PInlineNotificationProps, PInputDateProps, PInputEmailProps, PInputMonthProps, PInputNumberProps, PInputPasswordProps, PInputSearchProps, PInputTelProps, PInputTextProps, PInputTimeProps, PInputUrlProps, PInputWeekProps, PLinkProps, PLinkPureProps, PLinkTileProductProps, PLinkTileProps, PModalProps, PModelSignatureProps, PMultiSelectOptionProps, PMultiSelectProps, POptgroupProps, PPaginationProps, PPinCodeProps, PPopoverProps, PRadioGroupOptionProps, PRadioGroupProps, PScrollerProps, PSegmentedControlItemProps, PSegmentedControlProps, PSelectOptionProps, PSelectProps, PSheetProps, PSpinnerProps, PStepperHorizontalItemProps, PStepperHorizontalProps, PSwitchProps, PTableBodyProps, PTableCellProps, PTableHeadCellProps, PTableHeadProps, PTableHeadRowProps, PTableProps, PTableRowProps, PTabsBarProps, PTabsItemProps, PTabsProps, PTagDismissibleProps, PTagProps, PTextListItemProps, PTextListProps, PTextProps, PTextareaProps, PToastProps, PWordmarkProps, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerColor, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsBackground, TabsBarBackground, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextHyphens, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|
|
6028
|
+
export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AiTagLocale, AiTagVariant, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerPosition, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureColor, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasBackground, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingHyphens, HeadingSize, HeadingTag, HeadingWeight, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputMonthBlurEventDetail, InputMonthChangeEventDetail, InputMonthInputEventDetail, InputMonthState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchAriaAttribute, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, InputWeekBlurEventDetail, InputWeekChangeEventDetail, InputWeekInputEventDetail, InputWeekState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureColor, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PAccordionProps, PAiTagProps, PBannerProps, PButtonProps, PButtonPureProps, PButtonTileProps, PCanvasProps, PCarouselProps, PCheckboxProps, PCrestProps, PDisplayProps, PDividerProps, PDrilldownItemProps, PDrilldownLinkProps, PDrilldownProps, PFieldsetProps, PFlagProps, PFlyoutProps, PHeadingProps, PIconProps, PInlineNotificationProps, PInputDateProps, PInputEmailProps, PInputMonthProps, PInputNumberProps, PInputPasswordProps, PInputSearchProps, PInputTelProps, PInputTextProps, PInputTimeProps, PInputUrlProps, PInputWeekProps, PLinkProps, PLinkPureProps, PLinkTileProductProps, PLinkTileProps, PModalProps, PModelSignatureProps, PMultiSelectOptionProps, PMultiSelectProps, POptgroupProps, PPaginationProps, PPinCodeProps, PPopoverProps, PRadioGroupOptionProps, PRadioGroupProps, PScrollerProps, PSegmentedControlItemProps, PSegmentedControlProps, PSelectOptionProps, PSelectProps, PSheetProps, PSpinnerProps, PStepperHorizontalItemProps, PStepperHorizontalProps, PSwitchProps, PTableBodyProps, PTableCellProps, PTableHeadCellProps, PTableHeadProps, PTableHeadRowProps, PTableProps, PTableRowProps, PTabsBarProps, PTabsItemProps, PTabsProps, PTagDismissibleProps, PTagProps, PTextListItemProps, PTextListProps, PTextProps, PTextareaProps, PToastProps, PWordmarkProps, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerColor, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsAriaAttribute, TabsBackground, TabsBarAriaAttribute, TabsBarBackground, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextHyphens, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|