@mixd-id/web-scaffold 0.1.230406205 → 0.1.230406206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -755,6 +755,13 @@ export default{
|
|
|
755
755
|
}
|
|
756
756
|
}
|
|
757
757
|
|
|
758
|
+
const whitelistProps = [ 'containerVariant' ]
|
|
759
|
+
whitelistProps.forEach((key) => {
|
|
760
|
+
if(component.props[key]){
|
|
761
|
+
instance[key] = component.props[key]
|
|
762
|
+
}
|
|
763
|
+
})
|
|
764
|
+
|
|
758
765
|
if(Array.isArray(component.items)){
|
|
759
766
|
instance.items = component.items.map((_) => this.createComponentInstance(_)).filter(_=>_)
|
|
760
767
|
}
|