@mixd-id/web-scaffold 0.1.230406192 → 0.1.230406194

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406192",
4
+ "version": "0.1.230406194",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -186,7 +186,7 @@ const plugin = Plugin(function({ addBase, config, theme }) {
186
186
  transform: 'translate3d(0, 10px, 0)'
187
187
  },
188
188
 
189
- '.slideleft-enter-active, .slideleft - leave - active': {
189
+ '.slideleft-enter-active, .slideleft-leave-active': {
190
190
  transition: 'all 300ms cubic-bezier(0.25, 1, 0.5, 1)',
191
191
  transform: 'translate3d(0, 0, 0)'
192
192
  },
@@ -111,7 +111,7 @@ export default{
111
111
  group: _.group
112
112
  }
113
113
  })
114
- console.log(this.extraComponents)
114
+ console.log(Array.isArray(this.extraComponents))
115
115
  })
116
116
  }
117
117
 
@@ -126,7 +126,7 @@ export default{
126
126
  combinedComponents(){
127
127
  return [
128
128
  ...(this.components ?? []),
129
- ...(this.extraComponents ?? [])
129
+ ...(Array.isArray(this.extraComponents) ? this.extraComponents : [])
130
130
  ]
131
131
  },
132
132