Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

q42-cms-components

Package Overview
Dependencies
Maintainers
13
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

q42-cms-components - npm Package Compare versions

Comparing version 1.8.3 to 1.9.0-alpha.1

2

package.json
{
"name": "q42-cms-components",
"version": "1.8.3",
"version": "1.9.0-alpha.1",
"devDependencies": {

@@ -5,0 +5,0 @@ "babel-core": "6.24.x",

@@ -52,3 +52,4 @@ export function initialValue(schema, isProp) {

export function isSimpleProp(schema) {
return !(schema.type == 'object' || (schema.type == 'array' && schema.items.type == 'object'));
// null check for schema.items is for the case List<Guid> with [MappedTo(typeof([CmsItem]))] which has schema.type - array, but doesn't have items.
return !(schema.type == 'object' || (schema.type == 'array' && schema.items && schema.items.type == 'object'));
}

@@ -0,0 +0,0 @@ var Vue = require('vue');

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc