@proximus/lavender-button 2.0.0-alpha.53 → 2.0.0-alpha.55
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/Button.d.ts +4 -0
- package/package.json +1 -1
package/dist/Button.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ export type ButtonVariant = (typeof variantValues)[number];
|
|
|
6
6
|
* @summary Primary button for actions, forms, and more.
|
|
7
7
|
* @slot before - Content to be placed before the button text,
|
|
8
8
|
* @slot after - Content to be placed after the button text
|
|
9
|
+
* @attr {string} name - The name of the button, submitted as a pair with the button's value as part of the form data.
|
|
10
|
+
* @attr {string} value - The value associated with the button's name when it's submitted with a form.
|
|
11
|
+
* @attr {string} type - The default behavior of the button. Possible values are 'submit', 'reset', and 'button'.
|
|
12
|
+
* @attr {boolean} disabled - Whether the button is disabled.
|
|
9
13
|
*/
|
|
10
14
|
export declare class Button extends PxElement<HTMLButtonElement> {
|
|
11
15
|
static nativeName: string;
|