diff --git a/src/common/src/instantiationDecorator.ts b/src/common/src/instantiationDecorator.ts index 3bfd4556e..24c672aaa 100644 --- a/src/common/src/instantiationDecorator.ts +++ b/src/common/src/instantiationDecorator.ts @@ -42,6 +42,9 @@ export const toComponent = function toComponent(options: Record) { { key: 'ariaHidden', type: Boolean }, { key: 'ariaRole', type: String }, { key: 'ariaLabel', type: String }, + { key: 'ariaLabelledby', type: String }, + { key: 'ariaDescribedby', type: String }, + { key: 'ariaBusy', type: Boolean }, ]; ariaProps.forEach(({ key, type }) => { options.properties[key] = { diff --git a/src/progress/progress.wxml b/src/progress/progress.wxml index 36f2c83f4..529e13049 100644 --- a/src/progress/progress.wxml +++ b/src/progress/progress.wxml @@ -1,6 +1,15 @@