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