Fixed #2245 - Galleria containerStyle and containerClass TypeScript error

pull/2247/head
Tuğçe Küçükoğlu 2022-03-02 14:28:46 +03:00 committed by Tuğçe Küçükoğlu
parent 923f236d4c
commit 3654c641cc
3 changed files with 8 additions and 14 deletions

View File

@ -133,13 +133,13 @@ const GalleriaProps = [
},
{
name: "containerStyle",
type: "string",
type: "any",
default: "null",
description: "Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used."
},
{
name: "galleriaClass",
type: "string",
name: "containerClass",
type: "any",
default: "null",
description: "Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used."
}

View File

@ -106,14 +106,8 @@ export default {
type: String,
default: null
},
containerStyle: {
type: String,
default: null
},
containerClass: {
type: String,
default: null
}
containerStyle: null,
containerClass: null
},
container: null,
mask: null,

View File

@ -381,13 +381,13 @@ responsiveOptions: [
</tr>
<tr>
<td>containerStyle</td>
<td>string</td>
<td>any</td>
<td>null</td>
<td>Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used.</td>
</tr>
<tr>
<td>galleriaClass</td>
<td>string</td>
<td>containerClass</td>
<td>any</td>
<td>null</td>
<td>Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used.</td>
</tr>