From fb77964d9937ae6b2a25357deab41fa90d4013d9 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Tue, 16 May 2023 11:43:21 +0100 Subject: [PATCH] Refactor #3965 - update d.ts files --- components/lib/config/PrimeVue.d.ts | 1 + components/lib/fieldset/Fieldset.d.ts | 5 +++++ components/lib/panel/Panel.d.ts | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/components/lib/config/PrimeVue.d.ts b/components/lib/config/PrimeVue.d.ts index 35f5f765c..c8f2c1672 100644 --- a/components/lib/config/PrimeVue.d.ts +++ b/components/lib/config/PrimeVue.d.ts @@ -89,6 +89,7 @@ interface PrimeVueConfiguration { filterMatchModeOptions?: any; zIndex?: PrimeVueZIndexOptions; pt?: PrimeVuePTOptions; + unstyled?: boolean; } interface PrimeVueZIndexOptions { diff --git a/components/lib/fieldset/Fieldset.d.ts b/components/lib/fieldset/Fieldset.d.ts index 735acd792..44f8fe5e9 100755 --- a/components/lib/fieldset/Fieldset.d.ts +++ b/components/lib/fieldset/Fieldset.d.ts @@ -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; } /** diff --git a/components/lib/panel/Panel.d.ts b/components/lib/panel/Panel.d.ts index d274b53ef..33ae5d903 100755 --- a/components/lib/panel/Panel.d.ts +++ b/components/lib/panel/Panel.d.ts @@ -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; } /**