Refactor #3965 - update d.ts files
parent
987bf9cc3d
commit
fb77964d99
|
@ -89,6 +89,7 @@ interface PrimeVueConfiguration {
|
||||||
filterMatchModeOptions?: any;
|
filterMatchModeOptions?: any;
|
||||||
zIndex?: PrimeVueZIndexOptions;
|
zIndex?: PrimeVueZIndexOptions;
|
||||||
pt?: PrimeVuePTOptions;
|
pt?: PrimeVuePTOptions;
|
||||||
|
unstyled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PrimeVueZIndexOptions {
|
interface PrimeVueZIndexOptions {
|
||||||
|
|
|
@ -116,6 +116,11 @@ export interface FieldsetProps {
|
||||||
* @type {FieldsetPassThroughOptions}
|
* @type {FieldsetPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pt?: FieldsetPassThroughOptions;
|
pt?: FieldsetPassThroughOptions;
|
||||||
|
/**
|
||||||
|
* When enabled, it removes component related styles in the core.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
unstyled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -124,6 +124,11 @@ export interface PanelProps {
|
||||||
* @type {PanelPassThroughOptions}
|
* @type {PanelPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pt?: PanelPassThroughOptions;
|
pt?: PanelPassThroughOptions;
|
||||||
|
/**
|
||||||
|
* When enabled, it removes component related styles in the core.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
unstyled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue