diff --git a/components/lib/colorpicker/ColorPicker.d.ts b/components/lib/colorpicker/ColorPicker.d.ts index 54095d674..1b1391326 100755 --- a/components/lib/colorpicker/ColorPicker.d.ts +++ b/components/lib/colorpicker/ColorPicker.d.ts @@ -71,9 +71,9 @@ export interface ColorPickerPassThroughOptions { */ root?: ColorPickerPassThroughOptionType; /** - * Used to pass attributes to the input's DOM element. + * Used to pass attributes to the preview's DOM element. */ - input?: ColorPickerPassThroughOptionType; + preview?: ColorPickerPassThroughOptionType; /** * Used to pass attributes to the panel's DOM element. */ @@ -83,13 +83,13 @@ export interface ColorPickerPassThroughOptions { */ content?: ColorPickerPassThroughOptionType; /** - * Used to pass attributes to the selector's DOM element. + * Used to pass attributes to the color selector's DOM element. */ - selector?: ColorPickerPassThroughOptionType; + colorSelector?: ColorPickerPassThroughOptionType; /** - * Used to pass attributes to the color's DOM element. + * Used to pass attributes to the color background's DOM element. */ - color?: ColorPickerPassThroughOptionType; + colorBackground?: ColorPickerPassThroughOptionType; /** * Used to pass attributes to the color handler's DOM element. */ diff --git a/components/lib/colorpicker/ColorPicker.vue b/components/lib/colorpicker/ColorPicker.vue index 534dfbf9c..977bded98 100755 --- a/components/lib/colorpicker/ColorPicker.vue +++ b/components/lib/colorpicker/ColorPicker.vue @@ -1,12 +1,12 @@ diff --git a/components/lib/knob/style/KnobStyle.js b/components/lib/knob/style/KnobStyle.js index f3379ff2b..fbf07afa2 100644 --- a/components/lib/knob/style/KnobStyle.js +++ b/components/lib/knob/style/KnobStyle.js @@ -38,7 +38,7 @@ const classes = { root: ({ props }) => ['p-knob p-component', { 'p-disabled': props.disabled }], range: 'p-knob-range', value: 'p-knob-value', - label: 'p-knob-text' + text: 'p-knob-text' }; export default BaseStyle.extend({ diff --git a/components/lib/rating/Rating.d.ts b/components/lib/rating/Rating.d.ts index 11837be10..e8c3c4549 100755 --- a/components/lib/rating/Rating.d.ts +++ b/components/lib/rating/Rating.d.ts @@ -58,9 +58,9 @@ export interface RatingPassThroughOptions { */ root?: RatingPassThroughOptionType; /** - * Used to pass attributes to the item's DOM element. + * Used to pass attributes to the option's DOM element. */ - item?: RatingPassThroughOptionType; + option?: RatingPassThroughOptionType; /** * Used to pass attributes to the on icon's DOM element. */ @@ -70,13 +70,13 @@ export interface RatingPassThroughOptions { */ offIcon?: RatingPassThroughOptionType; /** - * Used to pass attributes to the hidden item input wrapper's DOM element. + * Used to pass attributes to the hidden option input wrapper's DOM element. */ - hiddenItemInputWrapper?: RatingPassThroughOptionType; + hiddenOptionInputWrapper?: RatingPassThroughOptionType; /** - * Used to pass attributes to the hidden item input's DOM element. + * Used to pass attributes to the hidden option input's DOM element. */ - hiddenItemInput?: RatingPassThroughOptionType; + hiddenOptionInput?: RatingPassThroughOptionType; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} @@ -110,12 +110,12 @@ export interface RatingState { */ export interface RatingContext { /** - * Current active state of the item as a boolean. + * Current active state of the option as a boolean. * @defaultValue false */ active: boolean; /** - * Current focused state of item as a boolean. + * Current focused state of option as a boolean. * @defaultValue false */ focused: boolean; @@ -204,7 +204,7 @@ export interface RatingSlots { */ onicon(scope: { /** - * Item value + * Option value */ value: number; /** @@ -218,7 +218,7 @@ export interface RatingSlots { */ officon(scope: { /** - * Item value + * Option value */ value: number; /** diff --git a/components/lib/rating/Rating.vue b/components/lib/rating/Rating.vue index 887b9df52..476c6fcc4 100755 --- a/components/lib/rating/Rating.vue +++ b/components/lib/rating/Rating.vue @@ -1,8 +1,8 @@