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", name: "containerStyle",
type: "string", type: "any",
default: "null", default: "null",
description: "Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used." description: "Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used."
}, },
{ {
name: "galleriaClass", name: "containerClass",
type: "string", type: "any",
default: "null", default: "null",
description: "Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used." 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, type: String,
default: null default: null
}, },
containerStyle: { containerStyle: null,
type: String, containerClass: null
default: null
},
containerClass: {
type: String,
default: null
}
}, },
container: null, container: null,
mask: null, mask: null,

View File

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