diff --git a/components/lib/scrollpanel/ScrollPanel.d.ts b/components/lib/scrollpanel/ScrollPanel.d.ts index e202f12c7..a7e3443a0 100644 --- a/components/lib/scrollpanel/ScrollPanel.d.ts +++ b/components/lib/scrollpanel/ScrollPanel.d.ts @@ -54,9 +54,9 @@ export interface ScrollPanelPassThroughOptions { */ root?: ScrollPanelPassThroughOptionType; /** - * Used to pass attributes to the wrapper's DOM element. + * Used to pass attributes to the content container's DOM element. */ - wrapper?: ScrollPanelPassThroughOptionType; + contentContainer?: ScrollPanelPassThroughOptionType; /** * Used to pass attributes to the content's DOM element. */ diff --git a/components/lib/scrollpanel/ScrollPanel.vue b/components/lib/scrollpanel/ScrollPanel.vue index 99f315991..b939d79ef 100644 --- a/components/lib/scrollpanel/ScrollPanel.vue +++ b/components/lib/scrollpanel/ScrollPanel.vue @@ -1,6 +1,6 @@ diff --git a/components/lib/splitter/style/SplitterStyle.js b/components/lib/splitter/style/SplitterStyle.js index 720af4721..c15ca7564 100644 --- a/components/lib/splitter/style/SplitterStyle.js +++ b/components/lib/splitter/style/SplitterStyle.js @@ -3,7 +3,7 @@ import BaseStyle from 'primevue/base/style'; const classes = { root: ({ props }) => ['p-splitter p-component', 'p-splitter-' + props.layout], gutter: 'p-splitter-gutter', - gutterHandler: 'p-splitter-gutter-handle' + gutterHandle: 'p-splitter-gutter-handle' }; const inlineStyles = { diff --git a/components/lib/stepper/Stepper.d.ts b/components/lib/stepper/Stepper.d.ts index 161b397f5..a178cdfd9 100644 --- a/components/lib/stepper/Stepper.d.ts +++ b/components/lib/stepper/Stepper.d.ts @@ -55,13 +55,13 @@ export interface StepperPassThroughOptions { */ root?: StepperPassThroughOptionType; /** - * Used to pass attributes to the nav's DOM element. + * Used to pass attributes to the list's DOM element. */ - nav?: StepperPassThroughOptionType; + list?: StepperPassThroughOptionType; /** - * Used to pass attributes to the panel container's DOM element. + * Used to pass attributes to the panels' DOM element. */ - panelContainer?: StepperPassThroughOptionType; + panels?: StepperPassThroughOptionType; /** * Used to pass attributes to the end handler's DOM element. */ diff --git a/components/lib/stepper/Stepper.vue b/components/lib/stepper/Stepper.vue index 7ba3d49cf..1b5077e90 100644 --- a/components/lib/stepper/Stepper.vue +++ b/components/lib/stepper/Stepper.vue @@ -3,14 +3,14 @@