Fixed #2245 - Galleria containerStyle and containerClass TypeScript error
parent
923f236d4c
commit
3654c641cc
|
@ -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."
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue