@porsche-design-system/components-react 3.29.0-rc.2 → 3.29.0-rc.4
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 +33 -0
- package/bin/patchRemixRunProcessBrowserGlobalIdentifier.js +0 -0
- package/cjs/lib/components/fieldset.wrapper.cjs +3 -3
- package/cjs/lib/components/flag.wrapper.cjs +26 -0
- package/cjs/lib/components/input-date.wrapper.cjs +29 -0
- package/cjs/lib/components/input-email.wrapper.cjs +29 -0
- package/cjs/lib/components/input-tel.wrapper.cjs +29 -0
- package/cjs/lib/components/input-time.wrapper.cjs +29 -0
- package/cjs/lib/components/input-url.wrapper.cjs +29 -0
- package/cjs/lib/components/multi-select.wrapper.cjs +3 -3
- package/cjs/lib/components/scroller.wrapper.cjs +1 -1
- package/cjs/lib/components/tabs-bar.wrapper.cjs +1 -1
- package/cjs/lib/components/tabs.wrapper.cjs +1 -1
- package/cjs/public-api.cjs +12 -0
- package/esm/lib/components/fieldset.wrapper.d.ts +9 -1
- package/esm/lib/components/fieldset.wrapper.mjs +3 -3
- package/esm/lib/components/flag.wrapper.d.ts +30 -0
- package/esm/lib/components/flag.wrapper.mjs +24 -0
- package/esm/lib/components/index.d.ts +6 -0
- package/esm/lib/components/input-date.wrapper.d.ts +176 -0
- package/esm/lib/components/input-date.wrapper.mjs +27 -0
- package/esm/lib/components/input-email.wrapper.d.ts +200 -0
- package/esm/lib/components/input-email.wrapper.mjs +27 -0
- package/esm/lib/components/input-number.wrapper.d.ts +31 -31
- package/esm/lib/components/input-password.wrapper.d.ts +35 -35
- package/esm/lib/components/input-search.wrapper.d.ts +31 -31
- package/esm/lib/components/input-tel.wrapper.d.ts +192 -0
- package/esm/lib/components/input-tel.wrapper.mjs +27 -0
- package/esm/lib/components/input-text.wrapper.d.ts +35 -35
- package/esm/lib/components/input-time.wrapper.d.ts +176 -0
- package/esm/lib/components/input-time.wrapper.mjs +27 -0
- package/esm/lib/components/input-url.wrapper.d.ts +192 -0
- package/esm/lib/components/input-url.wrapper.mjs +27 -0
- package/esm/lib/components/multi-select.wrapper.d.ts +8 -0
- package/esm/lib/components/multi-select.wrapper.mjs +3 -3
- package/esm/lib/components/scroller.wrapper.d.ts +4 -4
- package/esm/lib/components/scroller.wrapper.mjs +1 -1
- package/esm/lib/components/tabs-bar.wrapper.d.ts +4 -4
- package/esm/lib/components/tabs-bar.wrapper.mjs +1 -1
- package/esm/lib/components/tabs.wrapper.d.ts +2 -2
- package/esm/lib/components/tabs.wrapper.mjs +1 -1
- package/esm/lib/components/textarea.wrapper.d.ts +37 -37
- package/esm/lib/types.d.ts +153 -41
- package/esm/public-api.mjs +6 -0
- package/package.json +2 -2
- package/ssr/cjs/components/dist/styles/esm/styles-entry.cjs +551 -513
- package/ssr/cjs/components/dist/utils/esm/utils-entry.cjs +46 -35
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/fieldset.wrapper.cjs +4 -4
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/flag.wrapper.cjs +36 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/input-date.wrapper.cjs +40 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/input-email.wrapper.cjs +40 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/input-tel.wrapper.cjs +40 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/input-time.wrapper.cjs +40 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/input-url.wrapper.cjs +40 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/multi-select.wrapper.cjs +4 -4
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/scroller.wrapper.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/tabs-bar.wrapper.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/tabs.wrapper.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/fieldset.cjs +3 -2
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flag.cjs +17 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-base.cjs +2 -2
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-date.cjs +44 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-email.cjs +43 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-tel.cjs +43 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-text.cjs +1 -2
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-time.cjs +44 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-url.cjs +43 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select-option.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select.cjs +15 -6
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/no-results-option.cjs +9 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/scroller.cjs +1 -5
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select.cjs +8 -5
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/textarea.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/public-api.cjs +12 -0
- package/ssr/esm/components/dist/styles/esm/styles-entry.mjs +511 -480
- package/ssr/esm/components/dist/utils/esm/utils-entry.mjs +42 -34
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/fieldset.wrapper.mjs +4 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/flag.wrapper.mjs +34 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/input-date.wrapper.mjs +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/input-email.wrapper.mjs +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/input-tel.wrapper.mjs +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/input-time.wrapper.mjs +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/input-url.wrapper.mjs +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/multi-select.wrapper.mjs +4 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/scroller.wrapper.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tabs-bar.wrapper.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tabs.wrapper.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/banner.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-group.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-pure.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-tile.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/canvas.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/carousel.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox-wrapper.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/content-wrapper.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/crest.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/display.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/divider.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/drilldown-item.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/drilldown-link.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/drilldown.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/fieldset-wrapper.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/fieldset.mjs +5 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flag.mjs +15 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flex-item.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flex.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flyout.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/grid-item.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/grid.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/heading.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/headline.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/icon.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/inline-notification.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-base.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-date.mjs +42 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-email.mjs +41 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-number.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-password.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-search.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-tel.mjs +41 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-text.mjs +3 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-time.mjs +42 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-url.mjs +41 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select-option.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select.mjs +18 -9
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/no-results-option.mjs +7 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/optgroup.mjs +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/scroller.mjs +1 -5
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select.mjs +9 -6
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/textarea.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/public-api.mjs +6 -0
- package/ssr/esm/lib/components/fieldset.wrapper.d.ts +9 -1
- package/ssr/esm/lib/components/flag.wrapper.d.ts +30 -0
- package/ssr/esm/lib/components/index.d.ts +6 -0
- package/ssr/esm/lib/components/input-date.wrapper.d.ts +176 -0
- package/ssr/esm/lib/components/input-email.wrapper.d.ts +200 -0
- package/ssr/esm/lib/components/input-number.wrapper.d.ts +31 -31
- package/ssr/esm/lib/components/input-password.wrapper.d.ts +35 -35
- package/ssr/esm/lib/components/input-search.wrapper.d.ts +31 -31
- package/ssr/esm/lib/components/input-tel.wrapper.d.ts +192 -0
- package/ssr/esm/lib/components/input-text.wrapper.d.ts +35 -35
- package/ssr/esm/lib/components/input-time.wrapper.d.ts +176 -0
- package/ssr/esm/lib/components/input-url.wrapper.d.ts +192 -0
- package/ssr/esm/lib/components/multi-select.wrapper.d.ts +8 -0
- package/ssr/esm/lib/components/scroller.wrapper.d.ts +4 -4
- package/ssr/esm/lib/components/tabs-bar.wrapper.d.ts +4 -4
- package/ssr/esm/lib/components/tabs.wrapper.d.ts +2 -2
- package/ssr/esm/lib/components/textarea.wrapper.d.ts +37 -37
- package/ssr/esm/lib/dsr-components/flag.d.ts +5 -0
- package/ssr/esm/lib/dsr-components/input-base.d.ts +4 -2
- package/ssr/esm/lib/dsr-components/input-date.d.ts +19 -0
- package/ssr/esm/lib/dsr-components/input-email.d.ts +19 -0
- package/ssr/esm/lib/dsr-components/input-tel.d.ts +19 -0
- package/ssr/esm/lib/dsr-components/input-time.d.ts +19 -0
- package/ssr/esm/lib/dsr-components/input-url.d.ts +19 -0
- package/ssr/esm/lib/dsr-components/multi-select.d.ts +5 -1
- package/ssr/esm/lib/dsr-components/no-results-option.d.ts +2 -0
- package/ssr/esm/lib/dsr-components/select.d.ts +4 -1
- package/ssr/esm/lib/types.d.ts +153 -41
|
@@ -10,11 +10,11 @@ export type PScrollerProps = BaseProps & {
|
|
|
10
10
|
*/
|
|
11
11
|
aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
|
|
12
12
|
/**
|
|
13
|
-
* Adapts the background gradient color of prev and next button.
|
|
13
|
+
* @deprecated since v3.29.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
14
14
|
*/
|
|
15
15
|
gradientColor?: ScrollerGradientColor;
|
|
16
16
|
/**
|
|
17
|
-
* @deprecated since v3.0.0, will be removed with next major release
|
|
17
|
+
* @deprecated since v3.0.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
18
18
|
*/
|
|
19
19
|
gradientColorScheme?: ScrollerGradientColorScheme;
|
|
20
20
|
/**
|
|
@@ -44,11 +44,11 @@ export declare const PScroller: import("react").ForwardRefExoticComponent<import
|
|
|
44
44
|
*/
|
|
45
45
|
aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
|
|
46
46
|
/**
|
|
47
|
-
* Adapts the background gradient color of prev and next button.
|
|
47
|
+
* @deprecated since v3.29.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
48
48
|
*/
|
|
49
49
|
gradientColor?: ScrollerGradientColor;
|
|
50
50
|
/**
|
|
51
|
-
* @deprecated since v3.0.0, will be removed with next major release
|
|
51
|
+
* @deprecated since v3.0.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
52
52
|
*/
|
|
53
53
|
gradientColorScheme?: ScrollerGradientColorScheme;
|
|
54
54
|
/**
|
|
@@ -4,7 +4,7 @@ import { forwardRef, useRef } from 'react';
|
|
|
4
4
|
import { usePrefix, useTheme, useBrowserLayoutEffect, useMergedClass } from '../../hooks.mjs';
|
|
5
5
|
import { syncRef } from '../../utils.mjs';
|
|
6
6
|
|
|
7
|
-
const PScroller = /*#__PURE__*/ forwardRef(({ alignScrollIndicator = 'center', aria, gradientColor
|
|
7
|
+
const PScroller = /*#__PURE__*/ forwardRef(({ alignScrollIndicator = 'center', aria, gradientColor, gradientColorScheme, scrollIndicatorPosition, scrollToPosition, scrollbar = false, theme, className, ...rest }, ref) => {
|
|
8
8
|
const elementRef = useRef(undefined);
|
|
9
9
|
const WebComponentTag = usePrefix('p-scroller');
|
|
10
10
|
const propsToSync = [alignScrollIndicator, aria, gradientColor, gradientColorScheme, scrollIndicatorPosition, scrollToPosition, scrollbar, theme || useTheme()];
|
|
@@ -6,11 +6,11 @@ export type PTabsBarProps = BaseProps & {
|
|
|
6
6
|
*/
|
|
7
7
|
activeTabIndex?: number | undefined;
|
|
8
8
|
/**
|
|
9
|
-
* Adapts the background gradient color of prev and next button.
|
|
9
|
+
* @deprecated since v3.29.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
10
10
|
*/
|
|
11
11
|
gradientColor?: TabsBarGradientColor;
|
|
12
12
|
/**
|
|
13
|
-
* @deprecated since v3.0.0, will be removed with next major release
|
|
13
|
+
* @deprecated since v3.0.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
14
14
|
*/
|
|
15
15
|
gradientColorScheme?: TabsBarGradientColorScheme;
|
|
16
16
|
/**
|
|
@@ -40,11 +40,11 @@ export declare const PTabsBar: import("react").ForwardRefExoticComponent<import(
|
|
|
40
40
|
*/
|
|
41
41
|
activeTabIndex?: number | undefined;
|
|
42
42
|
/**
|
|
43
|
-
* Adapts the background gradient color of prev and next button.
|
|
43
|
+
* @deprecated since v3.29.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
44
44
|
*/
|
|
45
45
|
gradientColor?: TabsBarGradientColor;
|
|
46
46
|
/**
|
|
47
|
-
* @deprecated since v3.0.0, will be removed with next major release
|
|
47
|
+
* @deprecated since v3.0.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
48
48
|
*/
|
|
49
49
|
gradientColorScheme?: TabsBarGradientColorScheme;
|
|
50
50
|
/**
|
|
@@ -4,7 +4,7 @@ import { forwardRef, useRef } from 'react';
|
|
|
4
4
|
import { useEventCallback, usePrefix, useTheme, useBrowserLayoutEffect, useMergedClass } from '../../hooks.mjs';
|
|
5
5
|
import { syncRef } from '../../utils.mjs';
|
|
6
6
|
|
|
7
|
-
const PTabsBar = /*#__PURE__*/ forwardRef(({ activeTabIndex, gradientColor
|
|
7
|
+
const PTabsBar = /*#__PURE__*/ forwardRef(({ activeTabIndex, gradientColor, gradientColorScheme, onTabChange, onUpdate, size = 'small', theme, weight = 'regular', className, ...rest }, ref) => {
|
|
8
8
|
const elementRef = useRef(undefined);
|
|
9
9
|
useEventCallback(elementRef, 'tabChange', onTabChange);
|
|
10
10
|
useEventCallback(elementRef, 'update', onUpdate);
|
|
@@ -6,7 +6,7 @@ export type PTabsProps = BaseProps & {
|
|
|
6
6
|
*/
|
|
7
7
|
activeTabIndex?: number;
|
|
8
8
|
/**
|
|
9
|
-
* Adapts the background gradient color of prev and next button.
|
|
9
|
+
* @deprecated since v3.29.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
10
10
|
*/
|
|
11
11
|
gradientColor?: TabsGradientColor;
|
|
12
12
|
/**
|
|
@@ -40,7 +40,7 @@ export declare const PTabs: import("react").ForwardRefExoticComponent<import("re
|
|
|
40
40
|
*/
|
|
41
41
|
activeTabIndex?: number;
|
|
42
42
|
/**
|
|
43
|
-
* Adapts the background gradient color of prev and next button.
|
|
43
|
+
* @deprecated since v3.29.0, will be removed with next major release. Adapts the background gradient color of prev and next button.
|
|
44
44
|
*/
|
|
45
45
|
gradientColor?: TabsGradientColor;
|
|
46
46
|
/**
|
|
@@ -4,7 +4,7 @@ import { forwardRef, useRef } from 'react';
|
|
|
4
4
|
import { useEventCallback, usePrefix, useTheme, useBrowserLayoutEffect, useMergedClass } from '../../hooks.mjs';
|
|
5
5
|
import { syncRef } from '../../utils.mjs';
|
|
6
6
|
|
|
7
|
-
const PTabs = /*#__PURE__*/ forwardRef(({ activeTabIndex = 0, gradientColor
|
|
7
|
+
const PTabs = /*#__PURE__*/ forwardRef(({ activeTabIndex = 0, gradientColor, gradientColorScheme, onTabChange, onUpdate, size = 'small', theme, weight = 'regular', className, ...rest }, ref) => {
|
|
8
8
|
const elementRef = useRef(undefined);
|
|
9
9
|
useEventCallback(elementRef, 'tabChange', onTabChange);
|
|
10
10
|
useEventCallback(elementRef, 'update', onUpdate);
|
|
@@ -1,48 +1,48 @@
|
|
|
1
1
|
import type { BaseProps } from '../../BaseProps';
|
|
2
|
-
import type {
|
|
2
|
+
import type { BreakpointCustomizable, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, Theme, TextareaWrap } from '../types';
|
|
3
3
|
export type PTextareaProps = BaseProps & {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Provides a hint to the browser about what type of data the field expects, which can assist with autofill features (e.g., autocomplete='on').
|
|
6
6
|
*/
|
|
7
|
-
autoComplete?:
|
|
7
|
+
autoComplete?: string;
|
|
8
8
|
/**
|
|
9
9
|
* Show or hide the character counter.
|
|
10
10
|
*/
|
|
11
11
|
counter?: boolean;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Supplementary text providing more context or explanation for the textarea.
|
|
14
14
|
*/
|
|
15
15
|
description?: string;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* A boolean value that, if present, makes the textarea unusable and unclickable. The value will not be submitted with the form.
|
|
18
18
|
*/
|
|
19
19
|
disabled?: boolean;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Specifies the id of the <form> element that the textarea belongs to (useful if the textarea is not a direct descendant of the form).
|
|
22
22
|
*/
|
|
23
23
|
form?: string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Controls the visibility of the label.
|
|
26
26
|
*/
|
|
27
27
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* Text content for a user-facing label.
|
|
30
30
|
*/
|
|
31
31
|
label?: string;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* A non-negative integer specifying the maximum number of characters the user can enter into the textarea.
|
|
34
34
|
*/
|
|
35
35
|
maxLength?: number;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Dynamic feedback text for validation or status.
|
|
38
38
|
*/
|
|
39
39
|
message?: string;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* A non-negative integer specifying the minimum number of characters required for the textarea's value to be considered valid.
|
|
42
42
|
*/
|
|
43
43
|
minLength?: number;
|
|
44
44
|
/**
|
|
45
|
-
* The name of the textarea.
|
|
45
|
+
* The name of the textarea, used when submitting the form data.
|
|
46
46
|
*/
|
|
47
47
|
name: string;
|
|
48
48
|
/**
|
|
@@ -58,15 +58,15 @@ export type PTextareaProps = BaseProps & {
|
|
|
58
58
|
*/
|
|
59
59
|
onInput?: (event: CustomEvent<TextareaInputEventDetail>) => void;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* A string that provides a brief hint to the user about what kind of information is expected in the field (e.g., placeholder='Write your message here...'). This text is displayed when the textarea is empty.
|
|
62
62
|
*/
|
|
63
63
|
placeholder?: string;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* A boolean value that, if present, makes the textarea uneditable by the user, but its value will still be submitted with the form.
|
|
66
66
|
*/
|
|
67
67
|
readOnly?: boolean;
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* A boolean value that, if present, indicates that the textarea must be filled out before the form can be submitted.
|
|
70
70
|
*/
|
|
71
71
|
required?: boolean;
|
|
72
72
|
/**
|
|
@@ -78,15 +78,15 @@ export type PTextareaProps = BaseProps & {
|
|
|
78
78
|
*/
|
|
79
79
|
rows?: number;
|
|
80
80
|
/**
|
|
81
|
-
* Specifies whether the
|
|
81
|
+
* Specifies whether the textarea should have its spelling and grammar checked
|
|
82
82
|
*/
|
|
83
83
|
spellCheck?: boolean;
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* Indicates the validation or overall status of the textarea component.
|
|
86
86
|
*/
|
|
87
87
|
state?: TextareaState;
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
89
|
+
* Controls the visual appearance of the component.
|
|
90
90
|
*/
|
|
91
91
|
theme?: Theme;
|
|
92
92
|
/**
|
|
@@ -94,53 +94,53 @@ export type PTextareaProps = BaseProps & {
|
|
|
94
94
|
*/
|
|
95
95
|
value?: string;
|
|
96
96
|
/**
|
|
97
|
-
* Handles wrapping
|
|
97
|
+
* Handles wrapping behavior of elements.
|
|
98
98
|
*/
|
|
99
99
|
wrap?: TextareaWrap;
|
|
100
100
|
};
|
|
101
101
|
export declare const PTextarea: import("react").ForwardRefExoticComponent<import("react").DOMAttributes<{}> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* Provides a hint to the browser about what type of data the field expects, which can assist with autofill features (e.g., autocomplete='on').
|
|
104
104
|
*/
|
|
105
|
-
autoComplete?:
|
|
105
|
+
autoComplete?: string;
|
|
106
106
|
/**
|
|
107
107
|
* Show or hide the character counter.
|
|
108
108
|
*/
|
|
109
109
|
counter?: boolean;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Supplementary text providing more context or explanation for the textarea.
|
|
112
112
|
*/
|
|
113
113
|
description?: string;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* A boolean value that, if present, makes the textarea unusable and unclickable. The value will not be submitted with the form.
|
|
116
116
|
*/
|
|
117
117
|
disabled?: boolean;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* Specifies the id of the <form> element that the textarea belongs to (useful if the textarea is not a direct descendant of the form).
|
|
120
120
|
*/
|
|
121
121
|
form?: string;
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* Controls the visibility of the label.
|
|
124
124
|
*/
|
|
125
125
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* Text content for a user-facing label.
|
|
128
128
|
*/
|
|
129
129
|
label?: string;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* A non-negative integer specifying the maximum number of characters the user can enter into the textarea.
|
|
132
132
|
*/
|
|
133
133
|
maxLength?: number;
|
|
134
134
|
/**
|
|
135
|
-
*
|
|
135
|
+
* Dynamic feedback text for validation or status.
|
|
136
136
|
*/
|
|
137
137
|
message?: string;
|
|
138
138
|
/**
|
|
139
|
-
*
|
|
139
|
+
* A non-negative integer specifying the minimum number of characters required for the textarea's value to be considered valid.
|
|
140
140
|
*/
|
|
141
141
|
minLength?: number;
|
|
142
142
|
/**
|
|
143
|
-
* The name of the textarea.
|
|
143
|
+
* The name of the textarea, used when submitting the form data.
|
|
144
144
|
*/
|
|
145
145
|
name: string;
|
|
146
146
|
/**
|
|
@@ -156,15 +156,15 @@ export declare const PTextarea: import("react").ForwardRefExoticComponent<import
|
|
|
156
156
|
*/
|
|
157
157
|
onInput?: (event: CustomEvent<TextareaInputEventDetail>) => void;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* A string that provides a brief hint to the user about what kind of information is expected in the field (e.g., placeholder='Write your message here...'). This text is displayed when the textarea is empty.
|
|
160
160
|
*/
|
|
161
161
|
placeholder?: string;
|
|
162
162
|
/**
|
|
163
|
-
*
|
|
163
|
+
* A boolean value that, if present, makes the textarea uneditable by the user, but its value will still be submitted with the form.
|
|
164
164
|
*/
|
|
165
165
|
readOnly?: boolean;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* A boolean value that, if present, indicates that the textarea must be filled out before the form can be submitted.
|
|
168
168
|
*/
|
|
169
169
|
required?: boolean;
|
|
170
170
|
/**
|
|
@@ -176,15 +176,15 @@ export declare const PTextarea: import("react").ForwardRefExoticComponent<import
|
|
|
176
176
|
*/
|
|
177
177
|
rows?: number;
|
|
178
178
|
/**
|
|
179
|
-
* Specifies whether the
|
|
179
|
+
* Specifies whether the textarea should have its spelling and grammar checked
|
|
180
180
|
*/
|
|
181
181
|
spellCheck?: boolean;
|
|
182
182
|
/**
|
|
183
|
-
*
|
|
183
|
+
* Indicates the validation or overall status of the textarea component.
|
|
184
184
|
*/
|
|
185
185
|
state?: TextareaState;
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* Controls the visual appearance of the component.
|
|
188
188
|
*/
|
|
189
189
|
theme?: Theme;
|
|
190
190
|
/**
|
|
@@ -192,7 +192,7 @@ export declare const PTextarea: import("react").ForwardRefExoticComponent<import
|
|
|
192
192
|
*/
|
|
193
193
|
value?: string;
|
|
194
194
|
/**
|
|
195
|
-
* Handles wrapping
|
|
195
|
+
* Handles wrapping behavior of elements.
|
|
196
196
|
*/
|
|
197
197
|
wrap?: TextareaWrap;
|
|
198
198
|
} & {
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -493,6 +493,116 @@ declare const ICON_NAMES: readonly [
|
|
|
493
493
|
"zoom-out"
|
|
494
494
|
];
|
|
495
495
|
export type IconName = typeof ICON_NAMES[number];
|
|
496
|
+
declare const FLAG_NAMES: readonly [
|
|
497
|
+
"ae",
|
|
498
|
+
"am",
|
|
499
|
+
"ar",
|
|
500
|
+
"at",
|
|
501
|
+
"au",
|
|
502
|
+
"az",
|
|
503
|
+
"ba",
|
|
504
|
+
"be",
|
|
505
|
+
"bg",
|
|
506
|
+
"bh",
|
|
507
|
+
"bn",
|
|
508
|
+
"bo",
|
|
509
|
+
"br",
|
|
510
|
+
"by",
|
|
511
|
+
"ca",
|
|
512
|
+
"ch",
|
|
513
|
+
"cl",
|
|
514
|
+
"cn",
|
|
515
|
+
"co",
|
|
516
|
+
"cr",
|
|
517
|
+
"cw",
|
|
518
|
+
"cy",
|
|
519
|
+
"cz",
|
|
520
|
+
"de",
|
|
521
|
+
"dk",
|
|
522
|
+
"do",
|
|
523
|
+
"dz",
|
|
524
|
+
"ec",
|
|
525
|
+
"ee",
|
|
526
|
+
"eg",
|
|
527
|
+
"es",
|
|
528
|
+
"fi",
|
|
529
|
+
"fr",
|
|
530
|
+
"gb",
|
|
531
|
+
"ge",
|
|
532
|
+
"gh",
|
|
533
|
+
"gr",
|
|
534
|
+
"gt",
|
|
535
|
+
"hk",
|
|
536
|
+
"hn",
|
|
537
|
+
"hr",
|
|
538
|
+
"ht",
|
|
539
|
+
"hu",
|
|
540
|
+
"id",
|
|
541
|
+
"ie",
|
|
542
|
+
"il",
|
|
543
|
+
"in",
|
|
544
|
+
"is",
|
|
545
|
+
"it",
|
|
546
|
+
"jm",
|
|
547
|
+
"jo",
|
|
548
|
+
"jp",
|
|
549
|
+
"ke",
|
|
550
|
+
"kh",
|
|
551
|
+
"kr",
|
|
552
|
+
"kw",
|
|
553
|
+
"kz",
|
|
554
|
+
"lb",
|
|
555
|
+
"lk",
|
|
556
|
+
"lt",
|
|
557
|
+
"lu",
|
|
558
|
+
"lv",
|
|
559
|
+
"ma",
|
|
560
|
+
"md",
|
|
561
|
+
"mk",
|
|
562
|
+
"mn",
|
|
563
|
+
"mo",
|
|
564
|
+
"mq",
|
|
565
|
+
"mt",
|
|
566
|
+
"mu",
|
|
567
|
+
"mx",
|
|
568
|
+
"my",
|
|
569
|
+
"ng",
|
|
570
|
+
"nl",
|
|
571
|
+
"no",
|
|
572
|
+
"nz",
|
|
573
|
+
"om",
|
|
574
|
+
"pa",
|
|
575
|
+
"pe",
|
|
576
|
+
"pf",
|
|
577
|
+
"ph",
|
|
578
|
+
"pk",
|
|
579
|
+
"pl",
|
|
580
|
+
"pr",
|
|
581
|
+
"pt",
|
|
582
|
+
"py",
|
|
583
|
+
"qa",
|
|
584
|
+
"ro",
|
|
585
|
+
"rs",
|
|
586
|
+
"ru",
|
|
587
|
+
"sa",
|
|
588
|
+
"se",
|
|
589
|
+
"sg",
|
|
590
|
+
"si",
|
|
591
|
+
"sk",
|
|
592
|
+
"sv",
|
|
593
|
+
"th",
|
|
594
|
+
"tn",
|
|
595
|
+
"tr",
|
|
596
|
+
"tt",
|
|
597
|
+
"ua",
|
|
598
|
+
"us",
|
|
599
|
+
"uy",
|
|
600
|
+
"uz",
|
|
601
|
+
"ve",
|
|
602
|
+
"vn",
|
|
603
|
+
"za"
|
|
604
|
+
];
|
|
605
|
+
export type FlagName = typeof FLAG_NAMES[number];
|
|
496
606
|
declare const FORM_STATES: readonly [
|
|
497
607
|
"none",
|
|
498
608
|
"error",
|
|
@@ -586,6 +696,7 @@ declare const GRADIENT_COLORS: readonly [
|
|
|
586
696
|
"background-base",
|
|
587
697
|
"background-surface"
|
|
588
698
|
];
|
|
699
|
+
/** @deprecated */
|
|
589
700
|
export type ScrollerGradientColor = (typeof GRADIENT_COLORS)[number];
|
|
590
701
|
export type ScrollerScrollToPosition = {
|
|
591
702
|
scrollPosition: number;
|
|
@@ -598,6 +709,20 @@ declare const SCROLL_INDICATOR_POSITIONS: readonly [
|
|
|
598
709
|
/** @deprecated */
|
|
599
710
|
export type ScrollerScrollIndicatorPosition = (typeof SCROLL_INDICATOR_POSITIONS)[number];
|
|
600
711
|
export type ScrollerAlignScrollIndicator = ScrollerScrollIndicatorPosition;
|
|
712
|
+
export type MultiSelectState = FormState;
|
|
713
|
+
export type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
714
|
+
/** @deprecated */
|
|
715
|
+
export type MultiSelectUpdateEvent = {
|
|
716
|
+
name: string;
|
|
717
|
+
value: string[];
|
|
718
|
+
};
|
|
719
|
+
export type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
|
|
720
|
+
export type SelectState = FormState;
|
|
721
|
+
export type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
722
|
+
export type SelectUpdateEventDetail = {
|
|
723
|
+
name: string;
|
|
724
|
+
value: string;
|
|
725
|
+
};
|
|
601
726
|
declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
|
|
602
727
|
"down",
|
|
603
728
|
"up",
|
|
@@ -702,6 +827,9 @@ export type PorscheDesignSystem = {
|
|
|
702
827
|
};
|
|
703
828
|
};
|
|
704
829
|
export type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttributes, T>;
|
|
830
|
+
export type SelectedAriaRole<T> = {
|
|
831
|
+
role: Extract<AriaRole, T>;
|
|
832
|
+
};
|
|
705
833
|
declare const ACCORDION_SIZES: readonly [
|
|
706
834
|
"small",
|
|
707
835
|
"medium"
|
|
@@ -881,6 +1009,11 @@ export type FieldsetLabelSize = (typeof FIELDSET_LABEL_SIZES)[number];
|
|
|
881
1009
|
export type FieldsetState = FormState;
|
|
882
1010
|
export type FieldsetWrapperLabelSize = FieldsetLabelSize;
|
|
883
1011
|
export type FieldsetWrapperState = FieldsetState;
|
|
1012
|
+
declare const FLAG_ARIA_ATTRIBUTES: readonly [
|
|
1013
|
+
"aria-label"
|
|
1014
|
+
];
|
|
1015
|
+
export type FlagAriaAttribute = (typeof FLAG_ARIA_ATTRIBUTES)[number];
|
|
1016
|
+
export type FlagSize = TextSize;
|
|
884
1017
|
export type FlexInline = boolean;
|
|
885
1018
|
declare const FLEX_WRAPS: readonly [
|
|
886
1019
|
"nowrap",
|
|
@@ -1090,44 +1223,42 @@ declare const ICON_COLORS: readonly [
|
|
|
1090
1223
|
"state-disabled"
|
|
1091
1224
|
];
|
|
1092
1225
|
export type IconColor = (typeof ICON_COLORS)[number];
|
|
1226
|
+
export type InputDateState = FormState;
|
|
1227
|
+
export type InputDateChangeEventDetail = Event;
|
|
1228
|
+
export type InputDateBlurEventDetail = Event;
|
|
1229
|
+
export type InputDateInputEventDetail = InputEvent;
|
|
1230
|
+
export type InputEmailState = FormState;
|
|
1231
|
+
export type InputEmailChangeEventDetail = Event;
|
|
1232
|
+
export type InputEmailBlurEventDetail = Event;
|
|
1233
|
+
export type InputEmailInputEventDetail = InputEvent;
|
|
1093
1234
|
export type InputNumberState = FormState;
|
|
1094
|
-
declare const INPUT_NUMBER_AUTO_COMPLETE: readonly [
|
|
1095
|
-
"off",
|
|
1096
|
-
"on"
|
|
1097
|
-
];
|
|
1098
|
-
export type InputNumberAutoComplete = (typeof INPUT_NUMBER_AUTO_COMPLETE)[number];
|
|
1099
1235
|
export type InputNumberChangeEventDetail = Event;
|
|
1100
1236
|
export type InputNumberBlurEventDetail = Event;
|
|
1101
1237
|
export type InputNumberInputEventDetail = InputEvent;
|
|
1102
1238
|
export type InputPasswordState = FormState;
|
|
1103
|
-
declare const INPUT_PASSWORD_AUTO_COMPLETE: readonly [
|
|
1104
|
-
"off",
|
|
1105
|
-
"on",
|
|
1106
|
-
"current-password",
|
|
1107
|
-
"new-password"
|
|
1108
|
-
];
|
|
1109
|
-
export type InputPasswordAutoComplete = (typeof INPUT_PASSWORD_AUTO_COMPLETE)[number];
|
|
1110
1239
|
export type InputPasswordChangeEventDetail = Event;
|
|
1111
1240
|
export type InputPasswordBlurEventDetail = Event;
|
|
1112
1241
|
export type InputPasswordInputEventDetail = InputEvent;
|
|
1113
1242
|
export type InputSearchState = FormState;
|
|
1114
|
-
declare const INPUT_SEARCH_AUTO_COMPLETE: readonly [
|
|
1115
|
-
"off",
|
|
1116
|
-
"on"
|
|
1117
|
-
];
|
|
1118
|
-
export type InputSearchAutoComplete = (typeof INPUT_SEARCH_AUTO_COMPLETE)[number];
|
|
1119
1243
|
export type InputSearchChangeEventDetail = Event;
|
|
1120
1244
|
export type InputSearchBlurEventDetail = Event;
|
|
1121
1245
|
export type InputSearchInputEventDetail = InputEvent;
|
|
1246
|
+
export type InputTelState = FormState;
|
|
1247
|
+
export type InputTelChangeEventDetail = Event;
|
|
1248
|
+
export type InputTelBlurEventDetail = Event;
|
|
1249
|
+
export type InputTelInputEventDetail = InputEvent;
|
|
1122
1250
|
export type InputTextState = FormState;
|
|
1123
|
-
declare const INPUT_TEXT_AUTO_COMPLETE: readonly [
|
|
1124
|
-
"off",
|
|
1125
|
-
"on"
|
|
1126
|
-
];
|
|
1127
|
-
export type InputTextAutoComplete = (typeof INPUT_TEXT_AUTO_COMPLETE)[number];
|
|
1128
1251
|
export type InputTextChangeEventDetail = Event;
|
|
1129
1252
|
export type InputTextBlurEventDetail = Event;
|
|
1130
1253
|
export type InputTextInputEventDetail = InputEvent;
|
|
1254
|
+
export type InputTimeState = FormState;
|
|
1255
|
+
export type InputTimeChangeEventDetail = Event;
|
|
1256
|
+
export type InputTimeBlurEventDetail = Event;
|
|
1257
|
+
export type InputTimeInputEventDetail = InputEvent;
|
|
1258
|
+
export type InputUrlState = FormState;
|
|
1259
|
+
export type InputUrlChangeEventDetail = Event;
|
|
1260
|
+
export type InputUrlBlurEventDetail = Event;
|
|
1261
|
+
export type InputUrlInputEventDetail = InputEvent;
|
|
1131
1262
|
export type LinkIcon = LinkButtonIconName;
|
|
1132
1263
|
export type LinkPureIcon = LinkButtonIconName;
|
|
1133
1264
|
export type LinkPureAriaAttribute = LinkAriaAttribute;
|
|
@@ -1282,14 +1413,6 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
|
1282
1413
|
"inherit"
|
|
1283
1414
|
];
|
|
1284
1415
|
export type ModelSignatureColor = (typeof MODEL_SIGNATURE_COLORS)[number];
|
|
1285
|
-
export type MultiSelectState = FormState;
|
|
1286
|
-
export type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
1287
|
-
/** @deprecated */
|
|
1288
|
-
export type MultiSelectUpdateEvent = {
|
|
1289
|
-
name: string;
|
|
1290
|
-
value: string[];
|
|
1291
|
-
};
|
|
1292
|
-
export type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
|
|
1293
1416
|
declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
|
|
1294
1417
|
5,
|
|
1295
1418
|
7
|
|
@@ -1353,12 +1476,6 @@ declare const SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES: readonly [
|
|
|
1353
1476
|
"aria-label"
|
|
1354
1477
|
];
|
|
1355
1478
|
export type SegmentedControlItemAriaAttribute = (typeof SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES)[number];
|
|
1356
|
-
export type SelectState = FormState;
|
|
1357
|
-
export type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
1358
|
-
export type SelectUpdateEventDetail = {
|
|
1359
|
-
name: string;
|
|
1360
|
-
value: string;
|
|
1361
|
-
};
|
|
1362
1479
|
declare const DROPDOWN_DIRECTIONS: readonly [
|
|
1363
1480
|
"down",
|
|
1364
1481
|
"up",
|
|
@@ -1516,11 +1633,6 @@ declare const TEXT_LIST_TYPES: readonly [
|
|
|
1516
1633
|
];
|
|
1517
1634
|
export type TextListType = (typeof TEXT_LIST_TYPES)[number];
|
|
1518
1635
|
export type TextareaState = FormState;
|
|
1519
|
-
declare const AUTO_COMPLETE: readonly [
|
|
1520
|
-
"off",
|
|
1521
|
-
"on"
|
|
1522
|
-
];
|
|
1523
|
-
export type TextareaAutoComplete = (typeof AUTO_COMPLETE)[number];
|
|
1524
1636
|
declare const TEXTAREA_WRAPS: readonly [
|
|
1525
1637
|
"hard",
|
|
1526
1638
|
"soft",
|
package/esm/public-api.mjs
CHANGED
|
@@ -18,6 +18,7 @@ export { PDrilldownItem } from './lib/components/drilldown-item.wrapper.mjs';
|
|
|
18
18
|
export { PDrilldownLink } from './lib/components/drilldown-link.wrapper.mjs';
|
|
19
19
|
export { PFieldset } from './lib/components/fieldset.wrapper.mjs';
|
|
20
20
|
export { PFieldsetWrapper } from './lib/components/fieldset-wrapper.wrapper.mjs';
|
|
21
|
+
export { PFlag } from './lib/components/flag.wrapper.mjs';
|
|
21
22
|
export { PFlex } from './lib/components/flex.wrapper.mjs';
|
|
22
23
|
export { PFlexItem } from './lib/components/flex-item.wrapper.mjs';
|
|
23
24
|
export { PFlyout } from './lib/components/flyout.wrapper.mjs';
|
|
@@ -27,10 +28,15 @@ export { PHeading } from './lib/components/heading.wrapper.mjs';
|
|
|
27
28
|
export { PHeadline } from './lib/components/headline.wrapper.mjs';
|
|
28
29
|
export { PIcon } from './lib/components/icon.wrapper.mjs';
|
|
29
30
|
export { PInlineNotification } from './lib/components/inline-notification.wrapper.mjs';
|
|
31
|
+
export { PInputDate } from './lib/components/input-date.wrapper.mjs';
|
|
32
|
+
export { PInputEmail } from './lib/components/input-email.wrapper.mjs';
|
|
30
33
|
export { PInputNumber } from './lib/components/input-number.wrapper.mjs';
|
|
31
34
|
export { PInputPassword } from './lib/components/input-password.wrapper.mjs';
|
|
32
35
|
export { PInputSearch } from './lib/components/input-search.wrapper.mjs';
|
|
36
|
+
export { PInputTel } from './lib/components/input-tel.wrapper.mjs';
|
|
33
37
|
export { PInputText } from './lib/components/input-text.wrapper.mjs';
|
|
38
|
+
export { PInputTime } from './lib/components/input-time.wrapper.mjs';
|
|
39
|
+
export { PInputUrl } from './lib/components/input-url.wrapper.mjs';
|
|
34
40
|
export { PLink } from './lib/components/link.wrapper.mjs';
|
|
35
41
|
export { PLinkPure } from './lib/components/link-pure.wrapper.mjs';
|
|
36
42
|
export { PLinkSocial } from './lib/components/link-social.wrapper.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-react",
|
|
3
|
-
"version": "3.29.0-rc.
|
|
3
|
+
"version": "3.29.0-rc.4",
|
|
4
4
|
"description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"porsche",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
18
|
"homepage": "https://designsystem.porsche.com",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "3.29.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "3.29.0-rc.4"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"ag-grid-community": ">= 33.0.0 <35.0.0",
|