@porsche-design-system/components-vue 3.21.0 → 3.22.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -2
- package/ag-grid/theme.css +17 -8
- package/cjs/lib/components/PinCodeWrapper.vue.cjs +1 -1
- package/esm/lib/components/PinCodeWrapper.vue.d.ts +4 -0
- package/esm/lib/components/PinCodeWrapper.vue.mjs +5 -4
- package/esm/lib/types.d.ts +33 -33
- package/package.json +3 -12
- package/styles/_index.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
### [Unreleased]
|
|
16
16
|
|
|
17
|
+
### [3.22.0-rc.0] - 2024-11-19
|
|
18
|
+
|
|
19
|
+
#### Added
|
|
20
|
+
|
|
21
|
+
- `Pin-Code`: Add `form` prop to explicitly associate the component with a form, even when it's not directly nested
|
|
22
|
+
within it. ([#3588](https://github.com/porsche-design-system/porsche-design-system/pull/3588))
|
|
23
|
+
|
|
24
|
+
#### Changed
|
|
25
|
+
|
|
26
|
+
- Angular: updated peer dependency to `>=19.0.0 <20.0.0`
|
|
27
|
+
- `Pin-Code`:
|
|
28
|
+
- Remove native input and use ElementInternals API
|
|
29
|
+
- **Breaking Change**: `Pin-Code` component no longer support native validation due to the removal of the underlying
|
|
30
|
+
native `<input>` element. ([#3588](https://github.com/porsche-design-system/porsche-design-system/pull/3588))
|
|
31
|
+
- `Styles`: `SCSS` variant uses `@forward/@use` internally to replace deprecated `@import`
|
|
32
|
+
([#3623](https://github.com/porsche-design-system/porsche-design-system/pull/3623))
|
|
33
|
+
|
|
34
|
+
#### Fixed
|
|
35
|
+
|
|
36
|
+
- Partials: removed bundled `react/jsx-runtime` due to React 18/19 incompatibilities. When using `jsx` in the `format`
|
|
37
|
+
option, it is necessary to have `react/jsx-runtime` as a dependency in the project included.
|
|
38
|
+
([#3613](https://github.com/porsche-design-system/porsche-design-system/pull/3613))
|
|
39
|
+
|
|
17
40
|
### [3.21.0] - 2024-11-12
|
|
18
41
|
|
|
19
42
|
### [3.21.0-rc.0] - 2024-11-11
|
|
@@ -28,8 +51,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
28
51
|
([#3589](https://github.com/porsche-design-system/porsche-design-system/pull/3589))
|
|
29
52
|
- `Button`, `Link`: `compact` prop is breakpoint customizable
|
|
30
53
|
([#3580](https://github.com/porsche-design-system/porsche-design-system/pull/3580))
|
|
31
|
-
- `Select`, `Multi-Select`:
|
|
32
|
-
|
|
54
|
+
- `Select`, `Multi-Select`: Add `form` prop to explicitly associate these components with a specific form when they are
|
|
55
|
+
not directly nested within it. ([#3542](https://github.com/porsche-design-system/porsche-design-system/pull/3542))
|
|
33
56
|
|
|
34
57
|
#### Changed
|
|
35
58
|
|
package/ag-grid/theme.css
CHANGED
|
@@ -1630,10 +1630,10 @@ ag-grid-aurelia {
|
|
|
1630
1630
|
flex: 1 1 auto;
|
|
1631
1631
|
align-self: stretch;
|
|
1632
1632
|
align-items: center;
|
|
1633
|
+
overflow: hidden;
|
|
1633
1634
|
}
|
|
1634
1635
|
|
|
1635
1636
|
.ag-header-cell-label {
|
|
1636
|
-
overflow: hidden;
|
|
1637
1637
|
text-overflow: ellipsis;
|
|
1638
1638
|
}
|
|
1639
1639
|
|
|
@@ -1641,6 +1641,7 @@ ag-grid-aurelia {
|
|
|
1641
1641
|
position: sticky;
|
|
1642
1642
|
flex: none;
|
|
1643
1643
|
max-width: 100%;
|
|
1644
|
+
overflow: visible;
|
|
1644
1645
|
}
|
|
1645
1646
|
|
|
1646
1647
|
.ag-header-group-text {
|
|
@@ -1672,6 +1673,10 @@ ag-grid-aurelia {
|
|
|
1672
1673
|
white-space: normal;
|
|
1673
1674
|
}
|
|
1674
1675
|
|
|
1676
|
+
.ag-header-cell-comp-wrapper-limited-height > div {
|
|
1677
|
+
overflow: hidden;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1675
1680
|
.ag-right-aligned-header .ag-header-cell-label {
|
|
1676
1681
|
flex-direction: row-reverse;
|
|
1677
1682
|
}
|
|
@@ -2590,7 +2595,7 @@ ag-grid-aurelia {
|
|
|
2590
2595
|
position: absolute;
|
|
2591
2596
|
}
|
|
2592
2597
|
|
|
2593
|
-
.ag-header-group-cell-no-group.ag-header-span-height
|
|
2598
|
+
.ag-header-group-cell-no-group.ag-header-span-height {
|
|
2594
2599
|
display: none;
|
|
2595
2600
|
}
|
|
2596
2601
|
|
|
@@ -3945,11 +3950,7 @@ button[class^=ag-]:focus {
|
|
|
3945
3950
|
}
|
|
3946
3951
|
|
|
3947
3952
|
.ag-row-highlight-above::after {
|
|
3948
|
-
top:
|
|
3949
|
-
}
|
|
3950
|
-
|
|
3951
|
-
.ag-row-highlight-above.ag-row-first::after {
|
|
3952
|
-
top: 0;
|
|
3953
|
+
top: 0px;
|
|
3953
3954
|
}
|
|
3954
3955
|
|
|
3955
3956
|
.ag-row-highlight-below::after {
|
|
@@ -5065,7 +5066,7 @@ button.ag-side-button-button:focus {
|
|
|
5065
5066
|
margin-right: 4px;
|
|
5066
5067
|
}
|
|
5067
5068
|
|
|
5068
|
-
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total),
|
|
5069
|
+
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total, .ag-header-parent-hidden),
|
|
5069
5070
|
.ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group {
|
|
5070
5071
|
border-top: var(--ag-borders-critical) var(--ag-border-color);
|
|
5071
5072
|
}
|
|
@@ -5936,6 +5937,14 @@ button.ag-side-button-button:focus {
|
|
|
5936
5937
|
--ag-charts-justify: none !important;
|
|
5937
5938
|
}
|
|
5938
5939
|
|
|
5940
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus {
|
|
5941
|
+
box-shadow: none;
|
|
5942
|
+
}
|
|
5943
|
+
|
|
5944
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus-visible {
|
|
5945
|
+
box-shadow: var(--ag-input-focus-box-shadow);
|
|
5946
|
+
}
|
|
5947
|
+
|
|
5939
5948
|
.ag-date-time-list-page-title-bar {
|
|
5940
5949
|
display: flex;
|
|
5941
5950
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),t=require("../../utils.cjs"),
|
|
1
|
+
"use strict";const e=require("vue"),t=require("../../utils.cjs"),p=e.defineComponent({__name:"PinCodeWrapper",props:{description:{default:""},disabled:{type:Boolean,default:!1},form:{},hideLabel:{default:!1},label:{default:""},length:{default:4},loading:{type:Boolean,default:!1},message:{default:""},name:{},required:{type:Boolean,default:!1},state:{default:"none"},theme:{},type:{default:"number"},value:{default:""}},emits:["update"],setup(r,{emit:d}){const u=t.usePrefix("p-pin-code"),o=r,n=e.ref(),f=d,s=e.inject(t.themeInjectionKey),l=()=>t.syncProperties(n,{...o,theme:o.theme||s.value});return e.onMounted(()=>{l(),t.addEventListenerToElementRef(n,"update",f)}),e.onUpdated(l),e.watch(s,a=>{t.syncProperties(n,{theme:o.theme||a})}),(a,c)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(u)),{ref_key:"pdsComponentRef",ref:n},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default")]),_:3},512))}});module.exports=p;
|
|
@@ -8,6 +8,10 @@ type PPinCodeProps = {
|
|
|
8
8
|
* Disables the Pin Code. No events will be triggered while disabled state is active.
|
|
9
9
|
*/
|
|
10
10
|
disabled?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* The id of a form element the pin-code should be associated with.
|
|
13
|
+
*/
|
|
14
|
+
form?: string;
|
|
11
15
|
/**
|
|
12
16
|
* Show or hide label and description text. For better accessibility it is recommended to show the label.
|
|
13
17
|
*/
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as p, ref as m, inject as u, onMounted as i, onUpdated as c, watch as h, openBlock as y, createBlock as C, resolveDynamicComponent as _, unref as b, withCtx as B, renderSlot as g } from "vue";
|
|
2
2
|
import { usePrefix as v, themeInjectionKey as P, addEventListenerToElementRef as R, syncProperties as l } from "../../utils.mjs";
|
|
3
|
-
const j = /* @__PURE__ */
|
|
3
|
+
const j = /* @__PURE__ */ p({
|
|
4
4
|
__name: "PinCodeWrapper",
|
|
5
5
|
props: {
|
|
6
6
|
description: { default: "" },
|
|
7
7
|
disabled: { type: Boolean, default: !1 },
|
|
8
|
+
form: {},
|
|
8
9
|
hideLabel: { default: !1 },
|
|
9
10
|
label: { default: "" },
|
|
10
11
|
length: { default: 4 },
|
|
@@ -19,9 +20,9 @@ const j = /* @__PURE__ */ r({
|
|
|
19
20
|
},
|
|
20
21
|
emits: ["update"],
|
|
21
22
|
setup(d, { emit: s }) {
|
|
22
|
-
const f = v("p-pin-code"), t = d, e = m(),
|
|
23
|
+
const f = v("p-pin-code"), t = d, e = m(), r = s, o = u(P), a = () => l(e, { ...t, theme: t.theme || o.value });
|
|
23
24
|
return i(() => {
|
|
24
|
-
a(), R(e, "update",
|
|
25
|
+
a(), R(e, "update", r);
|
|
25
26
|
}), c(a), h(o, (n) => {
|
|
26
27
|
l(e, { theme: t.theme || n });
|
|
27
28
|
}), (n, k) => (y(), C(_(b(f)), {
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -430,14 +430,14 @@ declare const FORM_STATES: readonly [
|
|
|
430
430
|
"error",
|
|
431
431
|
"success"
|
|
432
432
|
];
|
|
433
|
-
export type FormState = typeof FORM_STATES[number];
|
|
433
|
+
export type FormState = (typeof FORM_STATES)[number];
|
|
434
434
|
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
435
435
|
"aria-label",
|
|
436
436
|
"aria-expanded",
|
|
437
437
|
"aria-pressed",
|
|
438
438
|
"aria-haspopup"
|
|
439
439
|
];
|
|
440
|
-
export type ButtonAriaAttribute = typeof BUTTON_ARIA_ATTRIBUTES[number];
|
|
440
|
+
export type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
|
|
441
441
|
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
442
442
|
"aria-label",
|
|
443
443
|
"aria-current",
|
|
@@ -553,7 +553,7 @@ declare const HEADING_TAGS: readonly [
|
|
|
553
553
|
"h5",
|
|
554
554
|
"h6"
|
|
555
555
|
];
|
|
556
|
-
export type HeadingTag = typeof HEADING_TAGS[number];
|
|
556
|
+
export type HeadingTag = (typeof HEADING_TAGS)[number];
|
|
557
557
|
declare const TEXT_SIZES: readonly [
|
|
558
558
|
"xx-small",
|
|
559
559
|
"x-small",
|
|
@@ -611,7 +611,7 @@ declare const BUTTON_TYPES: readonly [
|
|
|
611
611
|
"submit",
|
|
612
612
|
"reset"
|
|
613
613
|
];
|
|
614
|
-
export type ButtonType = typeof BUTTON_TYPES[number];
|
|
614
|
+
export type ButtonType = (typeof BUTTON_TYPES)[number];
|
|
615
615
|
declare const LINK_BUTTON_VARIANTS: readonly [
|
|
616
616
|
"primary",
|
|
617
617
|
"secondary",
|
|
@@ -737,7 +737,7 @@ declare const CONTENT_WRAPPER_BACKGROUND_COLORS: readonly [
|
|
|
737
737
|
"transparent",
|
|
738
738
|
"default"
|
|
739
739
|
];
|
|
740
|
-
export type ContentWrapperBackgroundColor = typeof CONTENT_WRAPPER_BACKGROUND_COLORS[number];
|
|
740
|
+
export type ContentWrapperBackgroundColor = (typeof CONTENT_WRAPPER_BACKGROUND_COLORS)[number];
|
|
741
741
|
declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
742
742
|
"narrow",
|
|
743
743
|
"basic",
|
|
@@ -745,7 +745,7 @@ declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
|
745
745
|
"fluid",
|
|
746
746
|
"full"
|
|
747
747
|
];
|
|
748
|
-
export type ContentWrapperWidth = typeof CONTENT_WRAPPER_WIDTHS[number];
|
|
748
|
+
export type ContentWrapperWidth = (typeof CONTENT_WRAPPER_WIDTHS)[number];
|
|
749
749
|
export type CrestTarget = LinkTarget;
|
|
750
750
|
export type CrestAriaAttribute = LinkAriaAttribute;
|
|
751
751
|
declare const DISPLAY_TAGS: readonly [
|
|
@@ -778,12 +778,12 @@ declare const DIVIDER_COLORS: readonly [
|
|
|
778
778
|
"neutral-contrast-medium",
|
|
779
779
|
"neutral-contrast-low"
|
|
780
780
|
];
|
|
781
|
-
export type DividerColor = typeof DIVIDER_COLORS[number];
|
|
781
|
+
export type DividerColor = (typeof DIVIDER_COLORS)[number];
|
|
782
782
|
declare const DIVIDER_DIRECTIONS: readonly [
|
|
783
783
|
"vertical",
|
|
784
784
|
"horizontal"
|
|
785
785
|
];
|
|
786
|
-
export type DividerDirection = typeof DIVIDER_DIRECTIONS[number];
|
|
786
|
+
export type DividerDirection = (typeof DIVIDER_DIRECTIONS)[number];
|
|
787
787
|
export type DividerOrientation = DividerDirection;
|
|
788
788
|
declare const FIELDSET_LABEL_SIZES: readonly [
|
|
789
789
|
"small",
|
|
@@ -799,14 +799,14 @@ declare const FLEX_WRAPS: readonly [
|
|
|
799
799
|
"wrap",
|
|
800
800
|
"wrap-reverse"
|
|
801
801
|
];
|
|
802
|
-
export type FlexWrap = typeof FLEX_WRAPS[number];
|
|
802
|
+
export type FlexWrap = (typeof FLEX_WRAPS)[number];
|
|
803
803
|
declare const FLEX_DIRECTIONS: readonly [
|
|
804
804
|
"row",
|
|
805
805
|
"row-reverse",
|
|
806
806
|
"column",
|
|
807
807
|
"column-reverse"
|
|
808
808
|
];
|
|
809
|
-
export type FlexDirection = typeof FLEX_DIRECTIONS[number];
|
|
809
|
+
export type FlexDirection = (typeof FLEX_DIRECTIONS)[number];
|
|
810
810
|
declare const FLEX_JUSTIFY_CONTENTS: readonly [
|
|
811
811
|
"flex-start",
|
|
812
812
|
"flex-end",
|
|
@@ -815,7 +815,7 @@ declare const FLEX_JUSTIFY_CONTENTS: readonly [
|
|
|
815
815
|
"space-around",
|
|
816
816
|
"space-evenly"
|
|
817
817
|
];
|
|
818
|
-
export type FlexJustifyContent = typeof FLEX_JUSTIFY_CONTENTS[number];
|
|
818
|
+
export type FlexJustifyContent = (typeof FLEX_JUSTIFY_CONTENTS)[number];
|
|
819
819
|
declare const FLEX_ALIGN_ITEMS: readonly [
|
|
820
820
|
"stretch",
|
|
821
821
|
"flex-start",
|
|
@@ -823,7 +823,7 @@ declare const FLEX_ALIGN_ITEMS: readonly [
|
|
|
823
823
|
"center",
|
|
824
824
|
"baseline"
|
|
825
825
|
];
|
|
826
|
-
export type FlexAlignItems = typeof FLEX_ALIGN_ITEMS[number];
|
|
826
|
+
export type FlexAlignItems = (typeof FLEX_ALIGN_ITEMS)[number];
|
|
827
827
|
declare const FLEX_ALIGN_CONTENTS: readonly [
|
|
828
828
|
"stretch",
|
|
829
829
|
"flex-start",
|
|
@@ -833,7 +833,7 @@ declare const FLEX_ALIGN_CONTENTS: readonly [
|
|
|
833
833
|
"space-around",
|
|
834
834
|
"space-evenly"
|
|
835
835
|
];
|
|
836
|
-
export type FlexAlignContent = typeof FLEX_ALIGN_CONTENTS[number];
|
|
836
|
+
export type FlexAlignContent = (typeof FLEX_ALIGN_CONTENTS)[number];
|
|
837
837
|
declare const FLEX_ITEM_WIDTHS: readonly [
|
|
838
838
|
"auto",
|
|
839
839
|
"one-quarter",
|
|
@@ -843,7 +843,7 @@ declare const FLEX_ITEM_WIDTHS: readonly [
|
|
|
843
843
|
"three-quarters",
|
|
844
844
|
"full"
|
|
845
845
|
];
|
|
846
|
-
export type FlexItemWidth = typeof FLEX_ITEM_WIDTHS[number];
|
|
846
|
+
export type FlexItemWidth = (typeof FLEX_ITEM_WIDTHS)[number];
|
|
847
847
|
declare const FLEX_ITEM_OFFSETS: readonly [
|
|
848
848
|
"none",
|
|
849
849
|
"one-quarter",
|
|
@@ -852,7 +852,7 @@ declare const FLEX_ITEM_OFFSETS: readonly [
|
|
|
852
852
|
"two-thirds",
|
|
853
853
|
"three-quarters"
|
|
854
854
|
];
|
|
855
|
-
export type FlexItemOffset = typeof FLEX_ITEM_OFFSETS[number];
|
|
855
|
+
export type FlexItemOffset = (typeof FLEX_ITEM_OFFSETS)[number];
|
|
856
856
|
declare const FLEX_ITEM_ALIGN_SELFS: readonly [
|
|
857
857
|
"auto",
|
|
858
858
|
"flex-start",
|
|
@@ -861,24 +861,24 @@ declare const FLEX_ITEM_ALIGN_SELFS: readonly [
|
|
|
861
861
|
"baseline",
|
|
862
862
|
"stretch"
|
|
863
863
|
];
|
|
864
|
-
export type FlexItemAlignSelf = typeof FLEX_ITEM_ALIGN_SELFS[number];
|
|
864
|
+
export type FlexItemAlignSelf = (typeof FLEX_ITEM_ALIGN_SELFS)[number];
|
|
865
865
|
declare const FLEX_ITEM_GROWS: readonly [
|
|
866
866
|
0,
|
|
867
867
|
1
|
|
868
868
|
];
|
|
869
|
-
export type FlexItemGrow = typeof FLEX_ITEM_GROWS[number];
|
|
869
|
+
export type FlexItemGrow = (typeof FLEX_ITEM_GROWS)[number];
|
|
870
870
|
declare const FLEX_ITEM_SHRINKS: readonly [
|
|
871
871
|
0,
|
|
872
872
|
1
|
|
873
873
|
];
|
|
874
|
-
export type FlexItemShrink = typeof FLEX_ITEM_SHRINKS[number];
|
|
874
|
+
export type FlexItemShrink = (typeof FLEX_ITEM_SHRINKS)[number];
|
|
875
875
|
declare const FLEX_ITEM_FLEXS: readonly [
|
|
876
876
|
"initial",
|
|
877
877
|
"auto",
|
|
878
878
|
"none",
|
|
879
879
|
"equal"
|
|
880
880
|
];
|
|
881
|
-
export type FlexItemFlex = typeof FLEX_ITEM_FLEXS[number];
|
|
881
|
+
export type FlexItemFlex = (typeof FLEX_ITEM_FLEXS)[number];
|
|
882
882
|
declare const FLYOUT_POSITIONS: readonly [
|
|
883
883
|
"start",
|
|
884
884
|
"end",
|
|
@@ -913,18 +913,18 @@ declare const GRID_DIRECTIONS: readonly [
|
|
|
913
913
|
"column",
|
|
914
914
|
"column-reverse"
|
|
915
915
|
];
|
|
916
|
-
export type GridDirection = typeof GRID_DIRECTIONS[number];
|
|
916
|
+
export type GridDirection = (typeof GRID_DIRECTIONS)[number];
|
|
917
917
|
declare const GRID_WRAPS: readonly [
|
|
918
918
|
"nowrap",
|
|
919
919
|
"wrap"
|
|
920
920
|
];
|
|
921
|
-
export type GridWrap = typeof GRID_WRAPS[number];
|
|
921
|
+
export type GridWrap = (typeof GRID_WRAPS)[number];
|
|
922
922
|
declare const GRID_GUTTERS: readonly [
|
|
923
923
|
16,
|
|
924
924
|
24,
|
|
925
925
|
36
|
|
926
926
|
];
|
|
927
|
-
export type GridGutter = typeof GRID_GUTTERS[number];
|
|
927
|
+
export type GridGutter = (typeof GRID_GUTTERS)[number];
|
|
928
928
|
declare const GRID_ITEM_SIZES: readonly [
|
|
929
929
|
1,
|
|
930
930
|
2,
|
|
@@ -939,7 +939,7 @@ declare const GRID_ITEM_SIZES: readonly [
|
|
|
939
939
|
11,
|
|
940
940
|
12
|
|
941
941
|
];
|
|
942
|
-
export type GridItemSize = typeof GRID_ITEM_SIZES[number];
|
|
942
|
+
export type GridItemSize = (typeof GRID_ITEM_SIZES)[number];
|
|
943
943
|
declare const GRID_ITEM_OFFSETS: readonly [
|
|
944
944
|
0,
|
|
945
945
|
1,
|
|
@@ -954,7 +954,7 @@ declare const GRID_ITEM_OFFSETS: readonly [
|
|
|
954
954
|
10,
|
|
955
955
|
11
|
|
956
956
|
];
|
|
957
|
-
export type GridItemOffset = typeof GRID_ITEM_OFFSETS[number];
|
|
957
|
+
export type GridItemOffset = (typeof GRID_ITEM_OFFSETS)[number];
|
|
958
958
|
declare const HEADING_COLORS: readonly [
|
|
959
959
|
"primary",
|
|
960
960
|
"inherit"
|
|
@@ -1132,7 +1132,7 @@ declare const MARQUE_SIZES: readonly [
|
|
|
1132
1132
|
"small",
|
|
1133
1133
|
"medium"
|
|
1134
1134
|
];
|
|
1135
|
-
export type MarqueSize = typeof MARQUE_SIZES[number];
|
|
1135
|
+
export type MarqueSize = (typeof MARQUE_SIZES)[number];
|
|
1136
1136
|
declare const BACKDROPS: readonly [
|
|
1137
1137
|
"blur",
|
|
1138
1138
|
"shading"
|
|
@@ -1255,11 +1255,11 @@ declare const SPINNER_SIZES: readonly [
|
|
|
1255
1255
|
"large",
|
|
1256
1256
|
"inherit"
|
|
1257
1257
|
];
|
|
1258
|
-
export type SpinnerSize = typeof SPINNER_SIZES[number];
|
|
1258
|
+
export type SpinnerSize = (typeof SPINNER_SIZES)[number];
|
|
1259
1259
|
declare const SPINNER_ARIA_ATTRIBUTES: readonly [
|
|
1260
1260
|
"aria-label"
|
|
1261
1261
|
];
|
|
1262
|
-
export type SpinnerAriaAttribute = typeof SPINNER_ARIA_ATTRIBUTES[number];
|
|
1262
|
+
export type SpinnerAriaAttribute = (typeof SPINNER_ARIA_ATTRIBUTES)[number];
|
|
1263
1263
|
declare const STEPPER_HORIZONTAL_SIZES: readonly [
|
|
1264
1264
|
"small",
|
|
1265
1265
|
"medium"
|
|
@@ -1323,11 +1323,11 @@ declare const TAG_DISMISSIBLE_COLORS: readonly [
|
|
|
1323
1323
|
"background-surface",
|
|
1324
1324
|
"background-default"
|
|
1325
1325
|
];
|
|
1326
|
-
export type TagDismissibleColor = typeof TAG_DISMISSIBLE_COLORS[number];
|
|
1326
|
+
export type TagDismissibleColor = (typeof TAG_DISMISSIBLE_COLORS)[number];
|
|
1327
1327
|
declare const TAG_DISMISSIBLE_ARIA_ATTRIBUTES: readonly [
|
|
1328
1328
|
"aria-label"
|
|
1329
1329
|
];
|
|
1330
|
-
export type TagDismissibleAriaAttribute = typeof TAG_DISMISSIBLE_ARIA_ATTRIBUTES[number];
|
|
1330
|
+
export type TagDismissibleAriaAttribute = (typeof TAG_DISMISSIBLE_ARIA_ATTRIBUTES)[number];
|
|
1331
1331
|
export type TagIcon = IconName;
|
|
1332
1332
|
declare const TAG_COLORS: readonly [
|
|
1333
1333
|
"background-base",
|
|
@@ -1373,19 +1373,19 @@ declare const LIST_TYPES: readonly [
|
|
|
1373
1373
|
"ordered"
|
|
1374
1374
|
];
|
|
1375
1375
|
/** @deprecated */
|
|
1376
|
-
export type TextListListType = typeof LIST_TYPES[number];
|
|
1376
|
+
export type TextListListType = (typeof LIST_TYPES)[number];
|
|
1377
1377
|
declare const ORDER_TYPES: readonly [
|
|
1378
1378
|
"numbered",
|
|
1379
1379
|
"alphabetically"
|
|
1380
1380
|
];
|
|
1381
1381
|
/** @deprecated */
|
|
1382
|
-
export type TextListOrderType = typeof ORDER_TYPES[number];
|
|
1382
|
+
export type TextListOrderType = (typeof ORDER_TYPES)[number];
|
|
1383
1383
|
declare const TEXT_LIST_TYPES: readonly [
|
|
1384
1384
|
"unordered",
|
|
1385
1385
|
"numbered",
|
|
1386
1386
|
"alphabetically"
|
|
1387
1387
|
];
|
|
1388
|
-
export type TextListType = typeof TEXT_LIST_TYPES[number];
|
|
1388
|
+
export type TextListType = (typeof TEXT_LIST_TYPES)[number];
|
|
1389
1389
|
export type TextareaState = FormState;
|
|
1390
1390
|
declare const AUTO_COMPLETE: readonly [
|
|
1391
1391
|
"off",
|
|
@@ -1417,7 +1417,7 @@ declare const TOAST_STATES: readonly [
|
|
|
1417
1417
|
"success",
|
|
1418
1418
|
"neutral"
|
|
1419
1419
|
];
|
|
1420
|
-
export type ToastState = typeof TOAST_STATES[number];
|
|
1420
|
+
export type ToastState = (typeof TOAST_STATES)[number];
|
|
1421
1421
|
export type ToastMessage = {
|
|
1422
1422
|
text: string;
|
|
1423
1423
|
state?: ToastState;
|
package/package.json
CHANGED
|
@@ -1,23 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.0-rc.0",
|
|
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
|
-
"keywords": [
|
|
6
|
-
"porsche",
|
|
7
|
-
"design",
|
|
8
|
-
"system",
|
|
9
|
-
"web",
|
|
10
|
-
"component",
|
|
11
|
-
"library",
|
|
12
|
-
"vue",
|
|
13
|
-
"js"
|
|
14
|
-
],
|
|
5
|
+
"keywords": ["porsche", "design", "system", "web", "component", "library", "vue", "js"],
|
|
15
6
|
"scope": "@porsche-design-system",
|
|
16
7
|
"author": "Dr. Ing. h.c. F. Porsche AG",
|
|
17
8
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
9
|
"homepage": "https://designsystem.porsche.com",
|
|
19
10
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "3.
|
|
11
|
+
"@porsche-design-system/components-js": "3.22.0-rc.0"
|
|
21
12
|
},
|
|
22
13
|
"peerDependencies": {
|
|
23
14
|
"ag-grid-enterprise": ">= 32.0.0 <33.0.0",
|
package/styles/_index.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@forward '@porsche-design-system/components-js/styles';
|