@hexure/ui 1.13.93 → 1.13.95
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 +7 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Button/Button.d.ts +2 -0
- package/dist/esm/index.js +7 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Button/Button.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -31,6 +31,8 @@ export interface ButtonProps extends AccessibleProps {
|
|
|
31
31
|
dataItemid?: string;
|
|
32
32
|
/** Optional type for the button */
|
|
33
33
|
type?: 'button' | 'submit' | 'reset' | null;
|
|
34
|
+
/** Optional section name for automation purposes */
|
|
35
|
+
dataSectionName?: string;
|
|
34
36
|
}
|
|
35
37
|
declare const Button: FC<ButtonProps>;
|
|
36
38
|
export default Button;
|
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,8 @@ interface ButtonProps$3 extends AccessibleProps {
|
|
|
128
128
|
dataItemid?: string;
|
|
129
129
|
/** Optional type for the button */
|
|
130
130
|
type?: 'button' | 'submit' | 'reset' | null;
|
|
131
|
+
/** Optional section name for automation purposes */
|
|
132
|
+
dataSectionName?: string;
|
|
131
133
|
}
|
|
132
134
|
declare const Button: FC<ButtonProps$3>;
|
|
133
135
|
|