@porsche-design-system/components-vue 3.31.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/cjs/lib/components/InputMonthWrapper.vue.cjs +1 -0
  3. package/cjs/lib/components/InputMonthWrapper.vue2.cjs +1 -0
  4. package/cjs/lib/components/InputSearchWrapper.vue.cjs +1 -1
  5. package/cjs/lib/components/InputWeekWrapper.vue.cjs +1 -0
  6. package/cjs/lib/components/InputWeekWrapper.vue2.cjs +1 -0
  7. package/cjs/lib/components/MultiSelectWrapper.vue.cjs +1 -1
  8. package/cjs/lib/components/RadioGroupOptionWrapper.vue.cjs +1 -1
  9. package/cjs/lib/components/SegmentedControlWrapper.vue.cjs +1 -1
  10. package/cjs/lib/components/SelectWrapper.vue.cjs +1 -1
  11. package/cjs/lib/components/TagDismissibleWrapper.vue.cjs +1 -1
  12. package/cjs/lib/components/TextareaWrapper.vue.cjs +1 -1
  13. package/cjs/public-api.cjs +1 -1
  14. package/esm/lib/components/ButtonGroupWrapper.vue.d.ts +1 -0
  15. package/esm/lib/components/InputMonthWrapper.vue.d.ts +111 -0
  16. package/esm/lib/components/InputMonthWrapper.vue.mjs +47 -0
  17. package/esm/lib/components/InputMonthWrapper.vue2.mjs +4 -0
  18. package/esm/lib/components/InputSearchWrapper.vue.d.ts +8 -0
  19. package/esm/lib/components/InputSearchWrapper.vue.mjs +10 -8
  20. package/esm/lib/components/InputWeekWrapper.vue.d.ts +111 -0
  21. package/esm/lib/components/InputWeekWrapper.vue.mjs +47 -0
  22. package/esm/lib/components/InputWeekWrapper.vue2.mjs +4 -0
  23. package/esm/lib/components/MultiSelectWrapper.vue.mjs +12 -12
  24. package/esm/lib/components/RadioGroupOptionWrapper.vue.d.ts +11 -1
  25. package/esm/lib/components/RadioGroupOptionWrapper.vue.mjs +12 -7
  26. package/esm/lib/components/SegmentedControlWrapper.vue.d.ts +31 -1
  27. package/esm/lib/components/SegmentedControlWrapper.vue.mjs +17 -11
  28. package/esm/lib/components/SelectWrapper.vue.d.ts +1 -1
  29. package/esm/lib/components/SelectWrapper.vue.mjs +12 -12
  30. package/esm/lib/components/TagDismissibleWrapper.vue.d.ts +5 -0
  31. package/esm/lib/components/TagDismissibleWrapper.vue.mjs +8 -7
  32. package/esm/lib/components/TextareaWrapper.vue.d.ts +6 -1
  33. package/esm/lib/components/TextareaWrapper.vue.mjs +7 -6
  34. package/esm/lib/components/index.d.ts +2 -0
  35. package/esm/lib/types.d.ts +19 -0
  36. package/esm/public-api.mjs +135 -131
  37. package/package.json +4 -4
@@ -1,5 +1,5 @@
1
- import { defineComponent as f, ref as c, inject as m, onMounted as i, onUpdated as h, watch as y, createBlock as b, openBlock as v, resolveDynamicComponent as _, unref as B, withCtx as C, renderSlot as g } from "vue";
2
- import { usePrefix as w, themeInjectionKey as R, syncProperties as s, addEventListenerToElementRef as n } from "../../utils.mjs";
1
+ import { defineComponent as f, ref as c, inject as m, onMounted as i, onUpdated as h, watch as g, createBlock as y, openBlock as b, resolveDynamicComponent as v, unref as _, withCtx as B, renderSlot as C } from "vue";
2
+ import { usePrefix as w, themeInjectionKey as R, syncProperties as s, addEventListenerToElementRef as a } from "../../utils.mjs";
3
3
  const P = /* @__PURE__ */ f({
4
4
  __name: "MultiSelectWrapper",
5
5
  props: {
@@ -17,21 +17,21 @@ const P = /* @__PURE__ */ f({
17
17
  theme: {},
18
18
  value: { default: () => [] }
19
19
  },
20
- emits: ["update:value", "blur", "change", "update"],
20
+ emits: ["update:value", "blur", "change", "toggle", "update"],
21
21
  setup(u, { emit: d }) {
22
- const p = w("p-multi-select"), a = u, e = c(), o = d, l = m(R), r = () => s(e, { ...a, theme: a.theme || l.value });
22
+ const p = w("p-multi-select"), n = u, e = c(), t = d, l = m(R), r = () => s(e, { ...n, theme: n.theme || l.value });
23
23
  return i(() => {
24
- r(), n(e, "blur", o), n(e, "change", o, (t) => {
25
- o("update:value", t.target.value);
26
- }), n(e, "update", o);
27
- }), h(r), y(l, (t) => {
28
- s(e, { theme: a.theme || t });
29
- }), (t, j) => (v(), b(_(B(p)), {
24
+ r(), a(e, "blur", t), a(e, "change", t, (o) => {
25
+ t("update:value", o.target.value);
26
+ }), a(e, "toggle", t), a(e, "update", t);
27
+ }), h(r), g(l, (o) => {
28
+ s(e, { theme: n.theme || o });
29
+ }), (o, j) => (b(), y(v(_(p)), {
30
30
  ref_key: "pdsComponentRef",
31
31
  ref: e
32
32
  }, {
33
- default: C(() => [
34
- g(t.$slots, "default")
33
+ default: B(() => [
34
+ C(o.$slots, "default")
35
35
  ]),
36
36
  _: 3
37
37
  }, 512));
@@ -16,9 +16,19 @@ type PRadioGroupOptionProps = {
16
16
  */
17
17
  value?: string;
18
18
  };
19
- declare const __VLS_export: import("vue").DefineComponent<PRadioGroupOptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PRadioGroupOptionProps> & Readonly<{}>, {
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 r, ref as a, onMounted as s, onUpdated as l, createBlock as f, openBlock as c, resolveDynamicComponent as d, unref as i } from "vue";
2
- import { usePrefix as u, syncProperties as m } from "../../utils.mjs";
3
- const b = /* @__PURE__ */ r({
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 p = u("p-radio-group-option"), t = n, e = a(), o = () => m(e, t);
13
- return s(o), l(o), (_, y) => (c(), f(d(i(p)), {
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
- }, null, 512));
16
+ }, {
17
+ default: m(() => [
18
+ _(r.$slots, "default")
19
+ ]),
20
+ _: 3
21
+ }, 512));
17
22
  }
18
23
  });
19
24
  export {
20
- b as default
25
+ k as default
21
26
  };
@@ -1,4 +1,4 @@
1
- import type { SegmentedControlBackgroundColor, BreakpointCustomizable, SegmentedControlColumns, Theme } from '../types';
1
+ import type { SegmentedControlBackgroundColor, BreakpointCustomizable, SegmentedControlColumns, SegmentedControlState, Theme } from '../types';
2
2
  type PSegmentedControlProps = {
3
3
  /**
4
4
  * @deprecated since v3.0.0, will be removed with next major release. Background color variations
@@ -12,6 +12,10 @@ type PSegmentedControlProps = {
12
12
  * A boolean value that, if present, renders the segmented-control as a compact version.
13
13
  */
14
14
  compact?: boolean;
15
+ /**
16
+ * Supplementary text providing more context or explanation for the segmented-control.
17
+ */
18
+ description?: string;
15
19
  /**
16
20
  * Disables the segmented-control.
17
21
  */
@@ -20,10 +24,30 @@ type PSegmentedControlProps = {
20
24
  * The id of a form element the segmented-control should be associated with.
21
25
  */
22
26
  form?: string;
27
+ /**
28
+ * Controls the visibility of the label.
29
+ */
30
+ hideLabel?: BreakpointCustomizable<boolean>;
31
+ /**
32
+ * Text content for a user-facing label.
33
+ */
34
+ label?: string;
35
+ /**
36
+ * Dynamic feedback text for validation or status.
37
+ */
38
+ message?: string;
23
39
  /**
24
40
  * The name of the segmented-control.
25
41
  */
26
42
  name?: string;
43
+ /**
44
+ * A boolean value that specifies a selection must be made from the group before the form can be submitted.
45
+ */
46
+ required?: boolean;
47
+ /**
48
+ * Indicates the validation or overall status of the component.
49
+ */
50
+ state?: SegmentedControlState;
27
51
  /**
28
52
  * Adapts the segmented-control color depending on the theme.
29
53
  */
@@ -42,8 +66,14 @@ declare const __VLS_base: import("vue").DefineComponent<PSegmentedControlProps,
42
66
  }, string, import("vue").PublicProps, Readonly<PSegmentedControlProps> & Readonly<{
43
67
  [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
44
68
  }>, {
69
+ label: string;
45
70
  compact: boolean;
71
+ description: string;
72
+ state: SegmentedControlState;
73
+ required: boolean;
46
74
  disabled: boolean;
75
+ hideLabel: BreakpointCustomizable<boolean>;
76
+ message: string;
47
77
  columns: BreakpointCustomizable<SegmentedControlColumns>;
48
78
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
49
79
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,37 +1,43 @@
1
- import { defineComponent as d, ref as u, inject as f, onMounted as i, onUpdated as h, watch as C, createBlock as g, openBlock as v, resolveDynamicComponent as y, unref as _, withCtx as b, renderSlot as k } from "vue";
2
- import { usePrefix as B, themeInjectionKey as R, syncProperties as s, addEventListenerToElementRef as n } from "../../utils.mjs";
3
- const j = /* @__PURE__ */ d({
1
+ import { defineComponent as p, ref as f, inject as c, onMounted as i, onUpdated as h, watch as g, createBlock as C, openBlock as y, resolveDynamicComponent as b, unref as v, withCtx as _, renderSlot as B } from "vue";
2
+ import { usePrefix as k, themeInjectionKey as R, syncProperties as s, addEventListenerToElementRef as n } from "../../utils.mjs";
3
+ const P = /* @__PURE__ */ p({
4
4
  __name: "SegmentedControlWrapper",
5
5
  props: {
6
6
  backgroundColor: {},
7
7
  columns: { default: "auto" },
8
8
  compact: { type: Boolean, default: !1 },
9
+ description: { default: "" },
9
10
  disabled: { type: Boolean, default: !1 },
10
11
  form: {},
12
+ hideLabel: { type: [Boolean, Object], default: !1 },
13
+ label: { default: "" },
14
+ message: { default: "" },
11
15
  name: {},
16
+ required: { type: Boolean, default: !1 },
17
+ state: { default: "none" },
12
18
  theme: {},
13
19
  value: {}
14
20
  },
15
21
  emits: ["update:value", "blur", "change", "segmentedControlChange", "update"],
16
- setup(l, { emit: p }) {
17
- const c = B("p-segmented-control"), a = l, e = u(), t = p, r = f(R), m = () => s(e, { ...a, theme: a.theme || r.value });
22
+ setup(d, { emit: u }) {
23
+ const m = k("p-segmented-control"), a = d, e = f(), t = u, l = c(R), r = () => s(e, { ...a, theme: a.theme || l.value });
18
24
  return i(() => {
19
- m(), n(e, "blur", t), n(e, "change", t, (o) => {
25
+ r(), n(e, "blur", t), n(e, "change", t, (o) => {
20
26
  t("update:value", o.target.value);
21
27
  }), n(e, "segmentedControlChange", t), n(e, "update", t);
22
- }), h(m), C(r, (o) => {
28
+ }), h(r), g(l, (o) => {
23
29
  s(e, { theme: a.theme || o });
24
- }), (o, w) => (v(), g(y(_(c)), {
30
+ }), (o, j) => (y(), C(b(v(m)), {
25
31
  ref_key: "pdsComponentRef",
26
32
  ref: e
27
33
  }, {
28
- default: b(() => [
29
- k(o.$slots, "default")
34
+ default: _(() => [
35
+ B(o.$slots, "default")
30
36
  ]),
31
37
  _: 3
32
38
  }, 512));
33
39
  }
34
40
  });
35
41
  export {
36
- j as default
42
+ P as default
37
43
  };
@@ -17,7 +17,7 @@ type PSelectProps = {
17
17
  */
18
18
  dropdownDirection?: SelectDropdownDirection;
19
19
  /**
20
- * Shows an input in the dropdown allowing options to be filtered.
20
+ * Shows an input in the dropdown allowing options to be filtered. Will be ignored if the `filter` slot is used.
21
21
  */
22
22
  filter?: boolean;
23
23
  /**
@@ -1,5 +1,5 @@
1
- import { defineComponent as u, ref as c, inject as m, onMounted as i, onUpdated as h, watch as y, createBlock as b, openBlock as v, resolveDynamicComponent as B, unref as _, withCtx as C, renderSlot as g } from "vue";
2
- import { usePrefix as w, themeInjectionKey as R, syncProperties as s, addEventListenerToElementRef as n } from "../../utils.mjs";
1
+ import { defineComponent as u, ref as c, inject as m, onMounted as i, onUpdated as h, watch as y, createBlock as g, openBlock as b, resolveDynamicComponent as v, unref as B, withCtx as _, renderSlot as C } from "vue";
2
+ import { usePrefix as w, themeInjectionKey as R, syncProperties as s, addEventListenerToElementRef as a } from "../../utils.mjs";
3
3
  const P = /* @__PURE__ */ u({
4
4
  __name: "SelectWrapper",
5
5
  props: {
@@ -18,21 +18,21 @@ const P = /* @__PURE__ */ u({
18
18
  theme: {},
19
19
  value: {}
20
20
  },
21
- emits: ["update:value", "blur", "change", "update"],
21
+ emits: ["update:value", "blur", "change", "toggle", "update"],
22
22
  setup(p, { emit: d }) {
23
- const f = w("p-select"), a = p, e = c(), o = d, l = m(R), r = () => s(e, { ...a, theme: a.theme || l.value });
23
+ const f = w("p-select"), n = p, e = c(), t = d, l = m(R), r = () => s(e, { ...n, theme: n.theme || l.value });
24
24
  return i(() => {
25
- r(), n(e, "blur", o), n(e, "change", o, (t) => {
26
- o("update:value", t.target.value);
27
- }), n(e, "update", o);
28
- }), h(r), y(l, (t) => {
29
- s(e, { theme: a.theme || t });
30
- }), (t, j) => (v(), b(B(_(f)), {
25
+ r(), a(e, "blur", t), a(e, "change", t, (o) => {
26
+ t("update:value", o.target.value);
27
+ }), a(e, "toggle", t), a(e, "update", t);
28
+ }), h(r), y(l, (o) => {
29
+ s(e, { theme: n.theme || o });
30
+ }), (o, j) => (b(), g(v(B(f)), {
31
31
  ref_key: "pdsComponentRef",
32
32
  ref: e
33
33
  }, {
34
- default: C(() => [
35
- g(t.$slots, "default")
34
+ default: _(() => [
35
+ C(o.$slots, "default")
36
36
  ]),
37
37
  _: 3
38
38
  }, 512));
@@ -8,6 +8,10 @@ type PTagDismissibleProps = {
8
8
  * Background color variations
9
9
  */
10
10
  color?: TagDismissibleColor;
11
+ /**
12
+ * A boolean value that, if present, renders the tag dismissible as a compact version.
13
+ */
14
+ compact?: boolean;
11
15
  /**
12
16
  * The label text.
13
17
  */
@@ -22,6 +26,7 @@ type __VLS_Slots = {} & {
22
26
  default?: (props: typeof __VLS_8) => any;
23
27
  };
24
28
  declare const __VLS_base: import("vue").DefineComponent<PTagDismissibleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PTagDismissibleProps> & Readonly<{}>, {
29
+ compact: boolean;
25
30
  color: TagDismissibleColor;
26
31
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
32
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,28 +1,29 @@
1
- import { defineComponent as c, ref as m, inject as f, onMounted as i, onUpdated as l, watch as d, createBlock as u, openBlock as h, resolveDynamicComponent as _, unref as C, withCtx as b, renderSlot as y } from "vue";
1
+ import { defineComponent as c, ref as m, inject as f, onMounted as l, onUpdated as i, watch as d, createBlock as u, openBlock as h, resolveDynamicComponent as _, unref as y, withCtx as C, renderSlot as b } from "vue";
2
2
  import { usePrefix as g, themeInjectionKey as k, syncProperties as s } from "../../utils.mjs";
3
- const R = /* @__PURE__ */ c({
3
+ const P = /* @__PURE__ */ c({
4
4
  __name: "TagDismissibleWrapper",
5
5
  props: {
6
6
  aria: {},
7
7
  color: { default: "background-surface" },
8
+ compact: { type: Boolean, default: !1 },
8
9
  label: {},
9
10
  theme: {}
10
11
  },
11
12
  setup(a) {
12
13
  const p = g("p-tag-dismissible"), e = a, t = m(), n = f(k), r = () => s(t, { ...e, theme: e.theme || n.value });
13
- return i(r), l(r), d(n, (o) => {
14
+ return l(r), i(r), d(n, (o) => {
14
15
  s(t, { theme: e.theme || o });
15
- }), (o, w) => (h(), u(_(C(p)), {
16
+ }), (o, w) => (h(), u(_(y(p)), {
16
17
  ref_key: "pdsComponentRef",
17
18
  ref: t
18
19
  }, {
19
- default: b(() => [
20
- y(o.$slots, "default")
20
+ default: C(() => [
21
+ b(o.$slots, "default")
21
22
  ]),
22
23
  _: 3
23
24
  }, 512));
24
25
  }
25
26
  });
26
27
  export {
27
- R as default
28
+ P as default
28
29
  };
@@ -4,6 +4,10 @@ type PTextareaProps = {
4
4
  * Provides a hint to the browser about what type of data the field expects, which can assist with autofill features (e.g., autocomplete='on').
5
5
  */
6
6
  autoComplete?: string;
7
+ /**
8
+ * A boolean value that, if present, renders the textarea as a compact version.
9
+ */
10
+ compact?: boolean;
7
11
  /**
8
12
  * Show or hide the character counter.
9
13
  */
@@ -61,7 +65,7 @@ type PTextareaProps = {
61
65
  */
62
66
  resize?: TextareaResize;
63
67
  /**
64
- * The number of rows of the textarea.
68
+ * The number of rows. Has no effect when field-sizing CSS Variable '--p-textarea-field-sizing' is set to 'content'.
65
69
  */
66
70
  rows?: number;
67
71
  /**
@@ -103,6 +107,7 @@ declare const __VLS_base: import("vue").DefineComponent<PTextareaProps, {}, {},
103
107
  wrap: TextareaWrap;
104
108
  resize: TextareaResize;
105
109
  label: string;
110
+ compact: boolean;
106
111
  placeholder: string;
107
112
  description: string;
108
113
  state: TextareaState;
@@ -1,9 +1,10 @@
1
- import { defineComponent as d, ref as m, inject as c, onMounted as i, onUpdated as h, watch as y, createBlock as v, openBlock as B, resolveDynamicComponent as C, unref as b, withCtx as g, renderSlot as _ } from "vue";
2
- import { usePrefix as x, themeInjectionKey as w, syncProperties as s, addEventListenerToElementRef as n } from "../../utils.mjs";
1
+ import { defineComponent as d, ref as m, inject as c, onMounted as i, onUpdated as h, watch as y, createBlock as B, openBlock as v, resolveDynamicComponent as C, unref as b, withCtx as g, renderSlot as _ } from "vue";
2
+ import { usePrefix as x, themeInjectionKey as w, syncProperties as f, addEventListenerToElementRef as n } from "../../utils.mjs";
3
3
  const j = /* @__PURE__ */ d({
4
4
  __name: "TextareaWrapper",
5
5
  props: {
6
6
  autoComplete: {},
7
+ compact: { type: Boolean, default: !1 },
7
8
  counter: { type: Boolean, default: !1 },
8
9
  description: { default: "" },
9
10
  disabled: { type: Boolean, default: !1 },
@@ -26,15 +27,15 @@ const j = /* @__PURE__ */ d({
26
27
  wrap: { default: "soft" }
27
28
  },
28
29
  emits: ["update:value", "blur", "change", "input"],
29
- setup(f, { emit: p }) {
30
- const u = x("p-textarea"), o = f, e = m(), a = p, l = c(w), r = () => s(e, { ...o, theme: o.theme || l.value });
30
+ setup(p, { emit: s }) {
31
+ const u = x("p-textarea"), o = p, e = m(), a = s, l = c(w), r = () => f(e, { ...o, theme: o.theme || l.value });
31
32
  return i(() => {
32
33
  r(), n(e, "blur", a), n(e, "change", a), n(e, "input", a, (t) => {
33
34
  a("update:value", t.target.value);
34
35
  });
35
36
  }), h(r), y(l, (t) => {
36
- s(e, { theme: o.theme || t });
37
- }), (t, k) => (B(), v(C(b(u)), {
37
+ f(e, { theme: o.theme || t });
38
+ }), (t, k) => (v(), B(C(b(u)), {
38
39
  ref_key: "pdsComponentRef",
39
40
  ref: e
40
41
  }, {
@@ -29,6 +29,7 @@ export { default as PIcon } from './IconWrapper.vue';
29
29
  export { default as PInlineNotification } from './InlineNotificationWrapper.vue';
30
30
  export { default as PInputDate } from './InputDateWrapper.vue';
31
31
  export { default as PInputEmail } from './InputEmailWrapper.vue';
32
+ export { default as PInputMonth } from './InputMonthWrapper.vue';
32
33
  export { default as PInputNumber } from './InputNumberWrapper.vue';
33
34
  export { default as PInputPassword } from './InputPasswordWrapper.vue';
34
35
  export { default as PInputSearch } from './InputSearchWrapper.vue';
@@ -36,6 +37,7 @@ export { default as PInputTel } from './InputTelWrapper.vue';
36
37
  export { default as PInputText } from './InputTextWrapper.vue';
37
38
  export { default as PInputTime } from './InputTimeWrapper.vue';
38
39
  export { default as PInputUrl } from './InputUrlWrapper.vue';
40
+ export { default as PInputWeek } from './InputWeekWrapper.vue';
39
41
  export { default as PLink } from './LinkWrapper.vue';
40
42
  export { default as PLinkPure } from './LinkPureWrapper.vue';
41
43
  export { default as PLinkSocial } from './LinkSocialWrapper.vue';
@@ -504,12 +504,14 @@ export type IconName = typeof ICON_NAMES[number];
504
504
  declare const FLAG_NAMES: readonly [
505
505
  "ad",
506
506
  "ae",
507
+ "al",
507
508
  "am",
508
509
  "ar",
509
510
  "at",
510
511
  "au",
511
512
  "az",
512
513
  "ba",
514
+ "bd",
513
515
  "be",
514
516
  "bg",
515
517
  "bh",
@@ -594,6 +596,7 @@ declare const FLAG_NAMES: readonly [
594
596
  "pt",
595
597
  "py",
596
598
  "qa",
599
+ "re",
597
600
  "ro",
598
601
  "rs",
599
602
  "ru",
@@ -736,6 +739,9 @@ export type MultiSelectUpdateEvent = {
736
739
  /** @deprecated */
737
740
  export type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
738
741
  export type MultiSelectChangeEventDetail = MultiSelectUpdateEventDetail;
742
+ export type MultiSelectToggleEventDetail = {
743
+ open: boolean;
744
+ };
739
745
  export type SelectState = FormState;
740
746
  export type SelectDropdownDirection = SelectComponentsDropdownDirection;
741
747
  /** @deprecated */
@@ -744,6 +750,9 @@ export type SelectUpdateEventDetail = {
744
750
  value: string;
745
751
  };
746
752
  export type SelectChangeEventDetail = SelectUpdateEventDetail;
753
+ export type SelectToggleEventDetail = {
754
+ open: boolean;
755
+ };
747
756
  declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
748
757
  "down",
749
758
  "up",
@@ -951,6 +960,7 @@ declare const CAROUSEL_ALIGN_CONTROLS: readonly [
951
960
  ];
952
961
  export type CarouselAlignControls = (typeof CAROUSEL_ALIGN_CONTROLS)[number];
953
962
  export type CheckboxState = FormState;
963
+ /** @deprecated */
954
964
  export type CheckboxUpdateEventDetail = {
955
965
  name: string;
956
966
  value?: string;
@@ -1259,6 +1269,10 @@ export type InputEmailState = FormState;
1259
1269
  export type InputEmailChangeEventDetail = Event;
1260
1270
  export type InputEmailBlurEventDetail = Event;
1261
1271
  export type InputEmailInputEventDetail = InputEvent;
1272
+ export type InputMonthState = FormState;
1273
+ export type InputMonthChangeEventDetail = Event;
1274
+ export type InputMonthBlurEventDetail = Event;
1275
+ export type InputMonthInputEventDetail = InputEvent;
1262
1276
  export type InputNumberState = FormState;
1263
1277
  export type InputNumberChangeEventDetail = Event;
1264
1278
  export type InputNumberBlurEventDetail = Event;
@@ -1287,6 +1301,10 @@ export type InputUrlState = FormState;
1287
1301
  export type InputUrlChangeEventDetail = Event;
1288
1302
  export type InputUrlBlurEventDetail = Event;
1289
1303
  export type InputUrlInputEventDetail = InputEvent;
1304
+ export type InputWeekState = FormState;
1305
+ export type InputWeekChangeEventDetail = Event;
1306
+ export type InputWeekBlurEventDetail = Event;
1307
+ export type InputWeekInputEventDetail = InputEvent;
1290
1308
  export type LinkIcon = LinkButtonIconName;
1291
1309
  export type LinkPureIcon = LinkButtonIconName;
1292
1310
  export type LinkPureAriaAttribute = LinkAriaAttribute;
@@ -1519,6 +1537,7 @@ export type SegmentedControlUpdateEventDetail = SegmentedControlUpdateEvent;
1519
1537
  export type SegmentedControlChangeEventDetail = SegmentedControlUpdateEventDetail;
1520
1538
  declare const SEGMENTED_CONTROL_COLUMNS: (string | number)[];
1521
1539
  export type SegmentedControlColumns = (typeof SEGMENTED_CONTROL_COLUMNS)[number];
1540
+ export type SegmentedControlState = FormState;
1522
1541
  export type SegmentedControlItemIcon = LinkButtonIconName;
1523
1542
  declare const SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES: readonly [
1524
1543
  "aria-label"