diff --git a/api-generator/components/galleria.js b/api-generator/components/galleria.js index 7a8a7ba9f..cc0ea47a7 100644 --- a/api-generator/components/galleria.js +++ b/api-generator/components/galleria.js @@ -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." } diff --git a/src/components/galleria/Galleria.vue b/src/components/galleria/Galleria.vue index ba5ed7929..7774b00b7 100755 --- a/src/components/galleria/Galleria.vue +++ b/src/components/galleria/Galleria.vue @@ -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, diff --git a/src/views/galleria/GalleriaDoc.vue b/src/views/galleria/GalleriaDoc.vue index 7aff58886..b06e2591d 100755 --- a/src/views/galleria/GalleriaDoc.vue +++ b/src/views/galleria/GalleriaDoc.vue @@ -381,13 +381,13 @@ responsiveOptions: [ containerStyle - string + any null Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used. - galleriaClass - string + containerClass + any null Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used.