dga-ui-react 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +10 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +201 -201
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ type DGA_AvatarProps = {
|
|
|
53
53
|
index?: number;
|
|
54
54
|
border?: boolean;
|
|
55
55
|
borderColor?: string;
|
|
56
|
+
"aria-label"?: string;
|
|
57
|
+
"aria-hidden"?: boolean;
|
|
56
58
|
};
|
|
57
59
|
declare const Avatar: React.FC<DGA_AvatarProps>;
|
|
58
60
|
|
|
@@ -348,6 +350,7 @@ interface DGA_RadioGroupProps extends Omit<React.HTMLAttributes<HTMLDivElement>,
|
|
|
348
350
|
name?: string;
|
|
349
351
|
value?: any;
|
|
350
352
|
layout?: "vertiaval" | "horizontal";
|
|
353
|
+
label?: string;
|
|
351
354
|
}
|
|
352
355
|
declare const RadioGroup: React.FC<DGA_RadioGroupProps>;
|
|
353
356
|
|