Refactor #3965 - update d.ts files

pull/3970/head
mertsincan 2023-05-16 11:43:21 +01:00
parent 987bf9cc3d
commit fb77964d99
3 changed files with 11 additions and 0 deletions

View File

@ -89,6 +89,7 @@ interface PrimeVueConfiguration {
filterMatchModeOptions?: any;
zIndex?: PrimeVueZIndexOptions;
pt?: PrimeVuePTOptions;
unstyled?: boolean;
}
interface PrimeVueZIndexOptions {

View File

@ -116,6 +116,11 @@ export interface FieldsetProps {
* @type {FieldsetPassThroughOptions}
*/
pt?: FieldsetPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**

View File

@ -124,6 +124,11 @@ export interface PanelProps {
* @type {PanelPassThroughOptions}
*/
pt?: PanelPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**