@porsche-design-system/components-vue 3.32.0-rc.0 → 3.32.0-rc.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.
- package/CHANGELOG.md +11 -2
- package/cjs/lib/components/RadioGroupOptionWrapper.vue.cjs +1 -1
- package/esm/lib/components/ButtonGroupWrapper.vue.d.ts +1 -0
- package/esm/lib/components/RadioGroupOptionWrapper.vue.d.ts +11 -1
- package/esm/lib/components/RadioGroupOptionWrapper.vue.mjs +12 -7
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,12 +14,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
## [Unreleased]
|
|
16
16
|
|
|
17
|
-
## [3.32.0-rc.
|
|
17
|
+
## [3.32.0-rc.1] - 2026-01-12
|
|
18
18
|
|
|
19
19
|
### Added
|
|
20
|
-
|
|
21
20
|
- `AG Grid`: Relaxed peer dependency to support AG Grid new major version 35
|
|
22
21
|
([#4143](https://github.com/porsche-design-system/porsche-design-system/issues/4143))
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- `Radio Group Option`: missing `delegatesFocus`
|
|
26
|
+
([#4135](https://github.com/porsche-design-system/porsche-design-system/pull/4135))
|
|
27
|
+
|
|
28
|
+
## [3.32.0-rc.0] - 2025-12-16
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
23
32
|
- `Multi Select, Select`:
|
|
24
33
|
- `selected` slot for custom selection rendering and enabling complex options
|
|
25
34
|
- `options-status` slot for loading, error and no results states when using custom filtering
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),t=require("../../utils.cjs"),
|
|
1
|
+
"use strict";const e=require("vue"),t=require("../../utils.cjs"),l=e.defineComponent({__name:"RadioGroupOptionWrapper",props:{disabled:{type:Boolean,default:!1},label:{},loading:{type:Boolean,default:!1},value:{}},setup(r){const s=t.usePrefix("p-radio-group-option"),p=r,o=e.ref(),n=()=>t.syncProperties(o,p);return e.onMounted(n),e.onUpdated(n),(a,u)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(s)),{ref_key:"pdsComponentRef",ref:o},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default")]),_:3},512))}});module.exports=l;
|
|
@@ -13,6 +13,7 @@ declare const __VLS_base: import("vue").DefineComponent<PButtonGroupProps, {}, {
|
|
|
13
13
|
direction: BreakpointCustomizable<ButtonGroupDirection>;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
/** @deprecated since v3.32.0, will be removed with next major release. Use simple styles instead. */
|
|
16
17
|
declare const _default: typeof __VLS_export;
|
|
17
18
|
export default _default;
|
|
18
19
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -16,9 +16,19 @@ type PRadioGroupOptionProps = {
|
|
|
16
16
|
*/
|
|
17
17
|
value?: string;
|
|
18
18
|
};
|
|
19
|
-
declare
|
|
19
|
+
declare var __VLS_8: {};
|
|
20
|
+
type __VLS_Slots = {} & {
|
|
21
|
+
default?: (props: typeof __VLS_8) => any;
|
|
22
|
+
};
|
|
23
|
+
declare const __VLS_base: import("vue").DefineComponent<PRadioGroupOptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PRadioGroupOptionProps> & Readonly<{}>, {
|
|
20
24
|
disabled: boolean;
|
|
21
25
|
loading: boolean;
|
|
22
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
28
|
declare const _default: typeof __VLS_export;
|
|
24
29
|
export default _default;
|
|
30
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { usePrefix as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as a, ref as s, onMounted as l, onUpdated as f, createBlock as d, openBlock as c, resolveDynamicComponent as i, unref as u, withCtx as m, renderSlot as _ } from "vue";
|
|
2
|
+
import { usePrefix as y, syncProperties as C } from "../../utils.mjs";
|
|
3
|
+
const k = /* @__PURE__ */ a({
|
|
4
4
|
__name: "RadioGroupOptionWrapper",
|
|
5
5
|
props: {
|
|
6
6
|
disabled: { type: Boolean, default: !1 },
|
|
@@ -9,13 +9,18 @@ const b = /* @__PURE__ */ r({
|
|
|
9
9
|
value: {}
|
|
10
10
|
},
|
|
11
11
|
setup(n) {
|
|
12
|
-
const
|
|
13
|
-
return
|
|
12
|
+
const t = y("p-radio-group-option"), p = n, e = s(), o = () => C(e, p);
|
|
13
|
+
return l(o), f(o), (r, B) => (c(), d(i(u(t)), {
|
|
14
14
|
ref_key: "pdsComponentRef",
|
|
15
15
|
ref: e
|
|
16
|
-
},
|
|
16
|
+
}, {
|
|
17
|
+
default: m(() => [
|
|
18
|
+
_(r.$slots, "default")
|
|
19
|
+
]),
|
|
20
|
+
_: 3
|
|
21
|
+
}, 512));
|
|
17
22
|
}
|
|
18
23
|
});
|
|
19
24
|
export {
|
|
20
|
-
|
|
25
|
+
k as default
|
|
21
26
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "3.32.0-rc.
|
|
3
|
+
"version": "3.32.0-rc.1",
|
|
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.32.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "3.32.0-rc.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"ag-grid-enterprise": ">= 33.0.0 <36.0.0",
|