From 2bc80fbca1590a24781391ef8eac4c733ada4886 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 24 Jan 2024 10:18:07 +0000 Subject: [PATCH 1/3] Update API doc --- doc/common/apidoc/index.json | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 7373c50af..105644381 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -28064,6 +28064,7 @@ "icons/arrowup": {}, "icons/ban": {}, "icons/bars": {}, + "icons/blank": {}, "icons/calendar": {}, "icons/check": {}, "icons/chevrondown": {}, From d12616de7e9e6690a35c55ff66cd7c8a14db1274 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 24 Jan 2024 13:37:01 +0300 Subject: [PATCH 2/3] Name changing from MeterItemOptions to MeterItem --- components/lib/metergroup/MeterGroup.d.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/components/lib/metergroup/MeterGroup.d.ts b/components/lib/metergroup/MeterGroup.d.ts index 4f18ab53e..74135e7cb 100644 --- a/components/lib/metergroup/MeterGroup.d.ts +++ b/components/lib/metergroup/MeterGroup.d.ts @@ -93,7 +93,7 @@ export interface MeterGroupContext { /** * Current value of the meter item */ - value: MeterItemOptions; + value: MeterItem; /** * Current index of the meter item */ @@ -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. */ @@ -133,7 +133,7 @@ export interface MeterGroupProps { /** * Current value of the metergroup. */ - value?: MeterItemOptions[] | undefined; + value?: MeterItem[] | undefined; /** * Mininum boundary value. * @defaultValue 0 @@ -187,7 +187,7 @@ export interface MeterGroupSlots { /** * Current value of the component */ - value: MeterItemOptions[]; + value: MeterItem[]; /** * Total percent of the metergroup items */ @@ -204,7 +204,7 @@ export interface MeterGroupSlots { /** * Current value of the meter item */ - value: MeterItemOptions; + value: MeterItem; /** * Current index of the meter item */ @@ -233,7 +233,7 @@ export interface MeterGroupSlots { /** * Current value of the component */ - value: MeterItemOptions; + value: MeterItem; /** * Style class of the icon */ @@ -246,7 +246,7 @@ export interface MeterGroupSlots { /** * Current value of the component */ - value: MeterItemOptions[]; + value: MeterItem[]; /** * Total percent of the metergroup items */ @@ -263,7 +263,7 @@ export interface MeterGroupSlots { /** * Current value of the component */ - value: MeterItemOptions[]; + value: MeterItem[]; /** * Total percent of the metergroup items */ From 9194ed1765c7d8de1111eabecd64c338ec63ac4f Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 24 Jan 2024 10:38:06 +0000 Subject: [PATCH 3/3] Update API doc --- doc/common/apidoc/index.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 105644381..717ac639d 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -35518,7 +35518,7 @@ "name": "value", "optional": false, "readonly": false, - "type": "MeterItemOptions", + "type": "MeterItem", "default": "", "description": "Current value of the meter item" }, @@ -35533,7 +35533,7 @@ ], "methods": [] }, - "MeterItemOptions": { + "MeterItem": { "description": "Defines valid properties of a meter item.", "relatedProp": "", "props": [ @@ -35586,7 +35586,7 @@ "name": "value", "optional": true, "readonly": false, - "type": "MeterItemOptions[]", + "type": "MeterItem[]", "default": "", "description": "Current value of the metergroup." }, @@ -35668,7 +35668,7 @@ { "name": "scope", "optional": false, - "type": "{\n \t value: MeterItemOptions, // Current value of the component\n \t totalPercent: number, // Total percent of the metergroup items\n \t percentages: number, // Array of sequential sum of values of metergroup items\n }" + "type": "{\n \t value: MeterItem, // Current value of the component\n \t totalPercent: number, // Total percent of the metergroup items\n \t percentages: number, // Array of sequential sum of values of metergroup items\n }" } ], "returnType": "VNode[]", @@ -35680,7 +35680,7 @@ { "name": "scope", "optional": false, - "type": "{\n \t value: MeterItemOptions, // Current value of the meter item\n \t index: number, // Current index of the meter item\n \t class: string, // Style class of the meter item\n \t orientation: string, // Current orientation of the component\n \t size: string, // Current width of the meter item\n \t totalPercent: number, // Total percent of the metergroup items\n }" + "type": "{\n \t value: MeterItem, // Current value of the meter item\n \t index: number, // Current index of the meter item\n \t class: string, // Style class of the meter item\n \t orientation: string, // Current orientation of the component\n \t size: string, // Current width of the meter item\n \t totalPercent: number, // Total percent of the metergroup items\n }" } ], "returnType": "VNode[]", @@ -35692,7 +35692,7 @@ { "name": "scope", "optional": false, - "type": "{\n \t value: MeterItemOptions, // Current value of the component\n \t class: string, // Style class of the icon\n }" + "type": "{\n \t value: MeterItem, // Current value of the component\n \t class: string, // Style class of the icon\n }" } ], "returnType": "VNode[]", @@ -35704,7 +35704,7 @@ { "name": "scope", "optional": false, - "type": "{\n \t value: MeterItemOptions, // Current value of the component\n \t totalPercent: number, // Total percent of the metergroup items\n \t percentages: number, // Array of sequential sum of values of metergroup items\n }" + "type": "{\n \t value: MeterItem, // Current value of the component\n \t totalPercent: number, // Total percent of the metergroup items\n \t percentages: number, // Array of sequential sum of values of metergroup items\n }" } ], "returnType": "VNode[]", @@ -35716,7 +35716,7 @@ { "name": "scope", "optional": false, - "type": "{\n \t value: MeterItemOptions, // Current value of the component\n \t totalPercent: number, // Total percent of the metergroup items\n \t percentages: number, // Array of sequential sum of values of metergroup items\n }" + "type": "{\n \t value: MeterItem, // Current value of the component\n \t totalPercent: number, // Total percent of the metergroup items\n \t percentages: number, // Array of sequential sum of values of metergroup items\n }" } ], "returnType": "VNode[]",