Skip to content

Commit

Permalink
Name changing from MeterItemOptions to MeterItem
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jan 24, 2024
1 parent 2bc80fb commit d12616d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions components/lib/metergroup/MeterGroup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface MeterGroupContext {
/**
* Current value of the meter item
*/
value: MeterItemOptions;
value: MeterItem;
/**
* Current index of the meter item
*/
Expand All @@ -103,7 +103,7 @@ export interface MeterGroupContext {
/**
* Defines valid properties of a meter item.
*/
export interface MeterItemOptions {
export interface MeterItem {
/**
* Current label of the meter item.
*/
Expand Down Expand Up @@ -133,7 +133,7 @@ export interface MeterGroupProps {
/**
* Current value of the metergroup.
*/
value?: MeterItemOptions[] | undefined;
value?: MeterItem[] | undefined;
/**
* Mininum boundary value.
* @defaultValue 0
Expand Down Expand Up @@ -187,7 +187,7 @@ export interface MeterGroupSlots {
/**
* Current value of the component
*/
value: MeterItemOptions[];
value: MeterItem[];
/**
* Total percent of the metergroup items
*/
Expand All @@ -204,7 +204,7 @@ export interface MeterGroupSlots {
/**
* Current value of the meter item
*/
value: MeterItemOptions;
value: MeterItem;
/**
* Current index of the meter item
*/
Expand Down Expand Up @@ -233,7 +233,7 @@ export interface MeterGroupSlots {
/**
* Current value of the component
*/
value: MeterItemOptions;
value: MeterItem;
/**
* Style class of the icon
*/
Expand All @@ -246,7 +246,7 @@ export interface MeterGroupSlots {
/**
* Current value of the component
*/
value: MeterItemOptions[];
value: MeterItem[];
/**
* Total percent of the metergroup items
*/
Expand All @@ -263,7 +263,7 @@ export interface MeterGroupSlots {
/**
* Current value of the component
*/
value: MeterItemOptions[];
value: MeterItem[];
/**
* Total percent of the metergroup items
*/
Expand Down

0 comments on commit d12616d

Please sign in to comment.