Fieldset: .d.ts updated for toggleButtonProps
parent
fb048d6910
commit
be462ac500
|
@ -21,7 +21,7 @@ const FieldsetProps = [
|
||||||
name: 'toggleButtonProps',
|
name: 'toggleButtonProps',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'null',
|
default: 'null',
|
||||||
description: 'Uses to pass the custom value to read for the anchor inside the component.'
|
description: 'Uses to pass the custom value to read for the AnchorHTMLAttributes inside the component.'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* @module fieldset
|
* @module fieldset
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
import { VNode } from 'vue';
|
import { AnchorHTMLAttributes, VNode } from 'vue';
|
||||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,10 +44,9 @@ export interface FieldsetProps {
|
||||||
*/
|
*/
|
||||||
collapsed?: boolean | undefined;
|
collapsed?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Uses to pass the custom value to read for the anchor inside the component.
|
* Uses to pass the custom value to read for the AnchorHTMLAttributes inside the component.
|
||||||
* @todo
|
|
||||||
*/
|
*/
|
||||||
toggleButtonProps?: object | undefined;
|
toggleButtonProps?: AnchorHTMLAttributes | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue