@porsche-design-system/components-react 4.0.0-alpha.0 → 4.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/CHANGELOG.md +344 -1
  2. package/bin/patchRemixRunProcessBrowserGlobalIdentifier.js +0 -0
  3. package/cjs/lib/components/accordion.wrapper.cjs +3 -3
  4. package/cjs/lib/components/canvas.wrapper.cjs +3 -3
  5. package/{styles → emotion}/cjs/index.cjs +3 -3
  6. package/emotion/esm/index.d.ts +1 -0
  7. package/emotion/esm/index.mjs +1 -0
  8. package/{styles → emotion}/package.json +0 -5
  9. package/esm/lib/components/accordion.wrapper.d.ts +29 -13
  10. package/esm/lib/components/accordion.wrapper.mjs +3 -3
  11. package/esm/lib/components/canvas.wrapper.d.ts +9 -1
  12. package/esm/lib/components/canvas.wrapper.mjs +3 -3
  13. package/esm/lib/components/display.wrapper.d.ts +2 -2
  14. package/esm/lib/components/divider.wrapper.d.ts +2 -2
  15. package/esm/lib/components/heading.wrapper.d.ts +2 -2
  16. package/esm/lib/components/icon.wrapper.d.ts +2 -2
  17. package/esm/lib/components/radio-group-option.wrapper.d.ts +2 -0
  18. package/esm/lib/components/text.wrapper.d.ts +2 -2
  19. package/esm/lib/components/textarea.wrapper.d.ts +2 -2
  20. package/esm/lib/types.d.ts +124 -103
  21. package/global-styles/cn/font-face.css +1 -1
  22. package/global-styles/cn/index.css +264 -115
  23. package/global-styles/color-scheme.css +135 -0
  24. package/global-styles/font-face.css +1 -1
  25. package/global-styles/index.css +264 -115
  26. package/global-styles/variables.css +158 -144
  27. package/package.json +27 -14
  28. package/scss/_index.scss +1 -0
  29. package/ssr/cjs/components/dist/styles/esm/styles-entry.cjs +1029 -737
  30. package/ssr/cjs/components/dist/utils/esm/utils-entry.cjs +37 -29
  31. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/accordion.wrapper.cjs +4 -4
  32. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/canvas.wrapper.cjs +4 -4
  33. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/radio-group-option.wrapper.cjs +3 -2
  34. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.cjs +15 -10
  35. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-tile.cjs +5 -4
  36. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/canvas.cjs +2 -13
  37. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox.cjs +5 -3
  38. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-base.cjs +2 -1
  39. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-date.cjs +2 -1
  40. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-email.cjs +1 -0
  41. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-month.cjs +2 -1
  42. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-number.cjs +1 -0
  43. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-password.cjs +2 -1
  44. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-search.cjs +1 -0
  45. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-tel.cjs +1 -0
  46. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-text.cjs +1 -0
  47. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-time.cjs +2 -1
  48. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-url.cjs +1 -0
  49. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-week.cjs +2 -1
  50. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/label.cjs +4 -2
  51. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-tile.cjs +5 -4
  52. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select.cjs +3 -2
  53. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/pin-code.cjs +3 -2
  54. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-group-option.cjs +11 -3
  55. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-group.cjs +3 -4
  56. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/scroller.cjs +2 -1
  57. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control.cjs +4 -2
  58. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select.cjs +2 -1
  59. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tag.cjs +1 -1
  60. package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/textarea.cjs +1 -0
  61. package/ssr/esm/components/dist/styles/esm/styles-entry.mjs +1029 -738
  62. package/ssr/esm/components/dist/utils/esm/utils-entry.mjs +37 -29
  63. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/accordion.wrapper.mjs +4 -4
  64. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/canvas.wrapper.mjs +4 -4
  65. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/radio-group-option.wrapper.mjs +3 -2
  66. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.mjs +15 -10
  67. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-tile.mjs +5 -4
  68. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/canvas.mjs +2 -13
  69. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox.mjs +5 -3
  70. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-base.mjs +2 -1
  71. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-date.mjs +2 -1
  72. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-email.mjs +1 -0
  73. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-month.mjs +2 -1
  74. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-number.mjs +1 -0
  75. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-password.mjs +2 -1
  76. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-search.mjs +1 -0
  77. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-tel.mjs +1 -0
  78. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-text.mjs +1 -0
  79. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-time.mjs +2 -1
  80. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-url.mjs +1 -0
  81. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/input-week.mjs +2 -1
  82. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/label.mjs +4 -2
  83. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-tile.mjs +5 -4
  84. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select.mjs +3 -2
  85. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/pin-code.mjs +5 -4
  86. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-group-option.mjs +12 -4
  87. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-group.mjs +4 -5
  88. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/scroller.mjs +2 -1
  89. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control.mjs +4 -2
  90. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select.mjs +2 -1
  91. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tag.mjs +1 -1
  92. package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/textarea.mjs +1 -0
  93. package/ssr/esm/lib/components/accordion.wrapper.d.ts +29 -13
  94. package/ssr/esm/lib/components/canvas.wrapper.d.ts +9 -1
  95. package/ssr/esm/lib/components/display.wrapper.d.ts +2 -2
  96. package/ssr/esm/lib/components/divider.wrapper.d.ts +2 -2
  97. package/ssr/esm/lib/components/heading.wrapper.d.ts +2 -2
  98. package/ssr/esm/lib/components/icon.wrapper.d.ts +2 -2
  99. package/ssr/esm/lib/components/radio-group-option.wrapper.d.ts +2 -0
  100. package/ssr/esm/lib/components/text.wrapper.d.ts +2 -2
  101. package/ssr/esm/lib/components/textarea.wrapper.d.ts +2 -2
  102. package/ssr/esm/lib/dsr-components/accordion.d.ts +8 -2
  103. package/ssr/esm/lib/dsr-components/canvas.d.ts +0 -3
  104. package/ssr/esm/lib/dsr-components/checkbox.d.ts +4 -2
  105. package/ssr/esm/lib/dsr-components/input-date.d.ts +1 -0
  106. package/ssr/esm/lib/dsr-components/input-email.d.ts +1 -0
  107. package/ssr/esm/lib/dsr-components/input-month.d.ts +1 -0
  108. package/ssr/esm/lib/dsr-components/input-number.d.ts +1 -0
  109. package/ssr/esm/lib/dsr-components/input-password.d.ts +1 -0
  110. package/ssr/esm/lib/dsr-components/input-search.d.ts +1 -0
  111. package/ssr/esm/lib/dsr-components/input-tel.d.ts +1 -0
  112. package/ssr/esm/lib/dsr-components/input-text.d.ts +1 -0
  113. package/ssr/esm/lib/dsr-components/input-time.d.ts +1 -0
  114. package/ssr/esm/lib/dsr-components/input-url.d.ts +1 -0
  115. package/ssr/esm/lib/dsr-components/input-week.d.ts +1 -0
  116. package/ssr/esm/lib/dsr-components/label.d.ts +1 -0
  117. package/ssr/esm/lib/dsr-components/multi-select.d.ts +2 -1
  118. package/ssr/esm/lib/dsr-components/pin-code.d.ts +2 -1
  119. package/ssr/esm/lib/dsr-components/radio-group-option.d.ts +4 -0
  120. package/ssr/esm/lib/dsr-components/radio-group.d.ts +2 -1
  121. package/ssr/esm/lib/dsr-components/segmented-control.d.ts +2 -1
  122. package/ssr/esm/lib/dsr-components/select.d.ts +2 -1
  123. package/ssr/esm/lib/dsr-components/textarea.d.ts +1 -0
  124. package/ssr/esm/lib/types.d.ts +124 -103
  125. package/tailwindcss/index.css +223 -135
  126. package/{styles/vanilla-extract → vanilla-extract}/cjs/index.cjs +1 -1
  127. package/vanilla-extract/esm/index.d.ts +1 -0
  128. package/vanilla-extract/esm/index.mjs +1 -0
  129. package/vanilla-extract/package.json +13 -0
  130. package/ssr/esm/lib/dsr-components/legacy-label.d.ts +0 -14
  131. package/styles/_index.scss +0 -1
  132. package/styles/esm/index.d.ts +0 -1
  133. package/styles/esm/index.mjs +0 -1
  134. package/styles/vanilla-extract/esm/index.d.ts +0 -1
  135. package/styles/vanilla-extract/esm/index.mjs +0 -1
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. icon)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
6
7
  * @slot {"name": "start", "description": "Shows content at the start of the input (e.g. unit prefix)."}
@@ -3,6 +3,7 @@ import { type LabelTag } from '@porsche-design-system/components/dist/utils';
3
3
  type LabelProps = {
4
4
  hasLabel: boolean;
5
5
  hasDescription: boolean;
6
+ children?: JSX.Element;
6
7
  htmlFor?: string;
7
8
  tag?: LabelTag;
8
9
  isRequired?: boolean;
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
5
6
  * @slot {"name": "selected", "description": "Use this slot to provide custom markup for the selected options display in the button area." }
6
7
  * @slot {"name": "", "description": "Default slot for the p-multi-select-option tags." }
@@ -8,7 +9,7 @@ import { Component } from 'react';
8
9
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
9
10
  * @slot {"name": "filter", "description": "Optional slot for providing a custom `p-input-search` input. When used, the default filter input is replaced and the built-in filter logic is disabled, giving full control over filtering behavior." }
10
11
  *
11
- * @controlled { "props": ["value"], "event": "update", "isInternallyMutated": true }
12
+ * @controlled { "props": ["value"], "event": "change", "isInternallyMutated": true }
12
13
  */
13
14
  export declare class DSRMultiSelect extends Component<any> {
14
15
  host: HTMLElement;
@@ -1,10 +1,11 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
6
7
  *
7
- * @controlled { "props": ["value"], "event": "update", "isInternallyMutated": true }
8
+ * @controlled { "props": ["value"], "event": "change", "isInternallyMutated": true }
8
9
  */
9
10
  export declare class DSRPinCode extends Component<any> {
10
11
  host: HTMLElement;
@@ -1,5 +1,9 @@
1
1
  import { Component } from 'react';
2
2
  import type { RadioGroupOptionInternalHTMLProps } from '@porsche-design-system/components/dist/utils';
3
+ /**
4
+ * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)." }
6
+ */
3
7
  export declare class DSRRadioGroupOption extends Component<any> {
4
8
  host: HTMLElement & RadioGroupOptionInternalHTMLProps;
5
9
  private initialLoading;
@@ -1,8 +1,9 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
- * @slot {"name": "", "description": "Default slot for the p-radio-group-option tags." }
6
+ * @slot {"name": "", "description": "Default slot for the p-radio-group-option tags."}
6
7
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
7
8
  */
8
9
  export declare class DSRRadioGroup extends Component<any> {
@@ -1,11 +1,12 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
5
6
  * @slot {"name": "", "description": "Default slot for the `p-segmented-control-item` tags." }
6
7
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed."}
7
8
  *
8
- * @controlled { "props": ["value"], "event": "update", "isInternallyMutated": true }
9
+ * @controlled { "props": ["value"], "event": "change", "isInternallyMutated": true }
9
10
  */
10
11
  export declare class DSRSegmentedControl extends Component<any> {
11
12
  host: HTMLElement;
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
5
6
  * @slot {"name": "selected", "description": "Use this slot to provide custom markup for the selected option display in the button area." }
6
7
  * @slot {"name": "", "description": "Default slot for the `p-select-option` tags." }
@@ -8,7 +9,7 @@ import { Component } from 'react';
8
9
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
9
10
  * @slot {"name": "filter", "description": "Optional slot for providing a custom `p-input-search` input. When used, the default filter input is replaced and the built-in filter logic is disabled, giving full control over filtering behavior." }
10
11
  *
11
- * @controlled { "props": ["value"], "event": "update", "isInternallyMutated": true }
12
+ * @controlled { "props": ["value"], "event": "change", "isInternallyMutated": true }
12
13
  */
13
14
  export declare class DSRSelect extends Component<any> {
14
15
  host: HTMLElement;
@@ -1,6 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  /**
3
3
  * @slot {"name": "label", "description": "Shows a label. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
4
+ * @slot {"name": "label-after", "description": "Places additional content after the label text (for content that should not be part of the label, e.g. external links or `p-popover`)."}
4
5
  * @slot {"name": "description", "description": "Shows a description. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
5
6
  * @slot {"name": "message", "description": "Shows a state message. Only [phrasing content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content) is allowed." }
6
7
  */
@@ -621,27 +621,6 @@ declare const FLAG_NAMES: readonly [
621
621
  "za"
622
622
  ];
623
623
  export type FlagName = typeof FLAG_NAMES[number];
624
- declare const FORM_STATES: readonly [
625
- "none",
626
- "error",
627
- "success"
628
- ];
629
- export type FormState = (typeof FORM_STATES)[number];
630
- declare const BUTTON_ARIA_ATTRIBUTES: readonly [
631
- "aria-label",
632
- "aria-description",
633
- "aria-expanded",
634
- "aria-pressed",
635
- "aria-haspopup"
636
- ];
637
- export type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
638
- declare const LINK_ARIA_ATTRIBUTES: readonly [
639
- "aria-label",
640
- "aria-description",
641
- "aria-current",
642
- "aria-haspopup"
643
- ];
644
- export type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
645
624
  declare const breakpoints: readonly [
646
625
  "base",
647
626
  "xs",
@@ -658,75 +637,6 @@ export type BreakpointValues<T> = {
658
637
  base: T;
659
638
  };
660
639
  export type BreakpointCustomizable<T> = T | BreakpointValues<T>;
661
- declare const LINK_TARGETS: readonly [
662
- "_self",
663
- "_blank",
664
- "_parent",
665
- "_top"
666
- ];
667
- export type LinkTarget = (typeof LINK_TARGETS)[number] | string;
668
- declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
669
- "role"
670
- ];
671
- export type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
672
- export type ScrollerScrollToPosition = {
673
- scrollPosition: number;
674
- isSmooth?: boolean;
675
- } | string;
676
- declare const SCROLL_INDICATOR_POSITIONS: readonly [
677
- "top",
678
- "center"
679
- ];
680
- export type ScrollerAlignScrollIndicator = (typeof SCROLL_INDICATOR_POSITIONS)[number];
681
- export type MultiSelectState = FormState;
682
- export type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
683
- export type MultiSelectChangeEventDetail = {
684
- name: string;
685
- value: string[];
686
- };
687
- export type MultiSelectToggleEventDetail = {
688
- open: boolean;
689
- };
690
- export type SelectState = FormState;
691
- export type SelectDropdownDirection = SelectComponentsDropdownDirection;
692
- export type SelectChangeEventDetail = {
693
- name: string;
694
- value: string;
695
- };
696
- export type SelectToggleEventDetail = {
697
- open: boolean;
698
- };
699
- declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
700
- "down",
701
- "up",
702
- "auto"
703
- ];
704
- export type SelectComponentsDropdownDirection = (typeof SELECT_DROPDOWN_DIRECTIONS)[number];
705
- declare const TILE_ASPECT_RATIOS: readonly [
706
- "1/1",
707
- "4/3",
708
- "3/4",
709
- "16/9",
710
- "9/16",
711
- "auto"
712
- ];
713
- export type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
714
- declare const TILE_SIZES: readonly [
715
- "medium",
716
- "large",
717
- "inherit"
718
- ];
719
- export type TileSize = (typeof TILE_SIZES)[number];
720
- declare const TILE_WEIGHTS: readonly [
721
- "regular",
722
- "semi-bold"
723
- ];
724
- export type TileWeight = (typeof TILE_WEIGHTS)[number];
725
- declare const TILE_ALIGNS: readonly [
726
- "top",
727
- "bottom"
728
- ];
729
- export type TileAlign = (typeof TILE_ALIGNS)[number];
730
640
  declare const HEADING_SIZES: readonly [
731
641
  "small",
732
642
  "medium",
@@ -780,22 +690,29 @@ declare const TYPOGRAPHY_TEXT_WEIGHTS: readonly [
780
690
  "bold"
781
691
  ];
782
692
  export type TypographyTextWeight = (typeof TYPOGRAPHY_TEXT_WEIGHTS)[number];
783
- declare const ALIGN_LABELS: readonly [
784
- "start",
785
- "end"
693
+ declare const LINK_BUTTON_VARIANTS: readonly [
694
+ "primary",
695
+ "secondary"
786
696
  ];
787
- export type AlignLabel = (typeof ALIGN_LABELS)[number];
697
+ export type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
788
698
  declare const BUTTON_TYPES: readonly [
789
699
  "button",
790
700
  "submit",
791
701
  "reset"
792
702
  ];
793
703
  export type ButtonType = (typeof BUTTON_TYPES)[number];
794
- declare const LINK_BUTTON_VARIANTS: readonly [
795
- "primary",
796
- "secondary"
704
+ declare const ALIGN_LABELS: readonly [
705
+ "start",
706
+ "end"
797
707
  ];
798
- export type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
708
+ export type AlignLabel = (typeof ALIGN_LABELS)[number];
709
+ declare const LINK_TARGETS: readonly [
710
+ "_self",
711
+ "_blank",
712
+ "_parent",
713
+ "_top"
714
+ ];
715
+ export type LinkTarget = (typeof LINK_TARGETS)[number] | string;
799
716
  export type LinkButtonIconName = IconName | "none";
800
717
  export type ButtonVariant = LinkButtonVariant;
801
718
  export type LinkVariant = LinkButtonVariant;
@@ -814,15 +731,112 @@ export type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAt
814
731
  export type SelectedAriaRole<T> = {
815
732
  role: Extract<AriaRole, T>;
816
733
  };
817
- declare const ACCORDION_SIZES: readonly [
818
- "small",
819
- "medium"
734
+ declare const FORM_STATES: readonly [
735
+ "none",
736
+ "error",
737
+ "success"
820
738
  ];
821
- export type AccordionSize = (typeof ACCORDION_SIZES)[number];
739
+ export type FormState = (typeof FORM_STATES)[number];
740
+ declare const BUTTON_ARIA_ATTRIBUTES: readonly [
741
+ "aria-label",
742
+ "aria-description",
743
+ "aria-expanded",
744
+ "aria-pressed",
745
+ "aria-haspopup"
746
+ ];
747
+ export type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
748
+ declare const LINK_ARIA_ATTRIBUTES: readonly [
749
+ "aria-label",
750
+ "aria-description",
751
+ "aria-current",
752
+ "aria-haspopup"
753
+ ];
754
+ export type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
755
+ declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
756
+ "role"
757
+ ];
758
+ export type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
759
+ export type ScrollerScrollToPosition = {
760
+ scrollPosition: number;
761
+ isSmooth?: boolean;
762
+ } | string;
763
+ declare const SCROLL_INDICATOR_POSITIONS: readonly [
764
+ "top",
765
+ "center"
766
+ ];
767
+ export type ScrollerAlignScrollIndicator = (typeof SCROLL_INDICATOR_POSITIONS)[number];
768
+ export type MultiSelectState = FormState;
769
+ export type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
770
+ export type MultiSelectChangeEventDetail = {
771
+ name: string;
772
+ value: string[];
773
+ };
774
+ export type MultiSelectToggleEventDetail = {
775
+ open: boolean;
776
+ };
777
+ export type SelectState = FormState;
778
+ export type SelectDropdownDirection = SelectComponentsDropdownDirection;
779
+ export type SelectChangeEventDetail = {
780
+ name: string;
781
+ value: string;
782
+ };
783
+ export type SelectToggleEventDetail = {
784
+ open: boolean;
785
+ };
786
+ declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
787
+ "down",
788
+ "up",
789
+ "auto"
790
+ ];
791
+ export type SelectComponentsDropdownDirection = (typeof SELECT_DROPDOWN_DIRECTIONS)[number];
792
+ declare const TILE_ASPECT_RATIOS: readonly [
793
+ "1/1",
794
+ "4/3",
795
+ "3/4",
796
+ "16/9",
797
+ "9/16",
798
+ "auto"
799
+ ];
800
+ export type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
801
+ declare const TILE_SIZES: readonly [
802
+ "medium",
803
+ "large",
804
+ "inherit"
805
+ ];
806
+ export type TileSize = (typeof TILE_SIZES)[number];
807
+ declare const TILE_WEIGHTS: readonly [
808
+ "regular",
809
+ "semi-bold"
810
+ ];
811
+ export type TileWeight = (typeof TILE_WEIGHTS)[number];
812
+ declare const TILE_ALIGNS: readonly [
813
+ "top",
814
+ "bottom"
815
+ ];
816
+ export type TileAlign = (typeof TILE_ALIGNS)[number];
817
+ declare const ACCORDIONS_BACKGROUNDS: readonly [
818
+ "canvas",
819
+ "surface",
820
+ "frosted",
821
+ "none"
822
+ ];
823
+ export type AccordionBackground = (typeof ACCORDIONS_BACKGROUNDS)[number];
824
+ declare const ACCORDION_ALIGN_MARKERS: readonly [
825
+ "start",
826
+ "end"
827
+ ];
828
+ export type AccordionAlignMarker = (typeof ACCORDION_ALIGN_MARKERS)[number];
822
829
  export type AccordionUpdateEventDetail = {
823
830
  open: boolean;
824
831
  };
832
+ /** @deprecated */
825
833
  export type AccordionHeadingTag = HeadingTag;
834
+ declare const ACCORDION_SIZES: readonly [
835
+ "small",
836
+ "medium"
837
+ ];
838
+ /** @deprecated */
839
+ export type AccordionSize = (typeof ACCORDION_SIZES)[number];
826
840
  declare const BANNER_STATES: readonly [
827
841
  "info",
828
842
  "success",
@@ -847,9 +861,16 @@ export type ButtonTileAlign = TileAlign;
847
861
  export type CanvasSidebarStartUpdateEventDetail = {
848
862
  open: boolean;
849
863
  };
864
+ declare const CANVAS_BACKGROUNDS: readonly [
865
+ "canvas",
866
+ "surface"
867
+ ];
868
+ export type CanvasBackground = (typeof CANVAS_BACKGROUNDS)[number];
850
869
  declare const CAROUSEL_WIDTHS: readonly [
851
870
  "basic",
852
- "extended"
871
+ "extended",
872
+ "wide",
873
+ "full"
853
874
  ];
854
875
  export type CarouselWidth = (typeof CAROUSEL_WIDTHS)[number];
855
876
  declare const CAROUSEL_SLIDES_PER_PAGE: (string | number)[];