Socket
Socket
Sign inDemoInstall

@json-layout/vocabulary

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@json-layout/vocabulary - npm Package Compare versions

Comparing version 0.23.1 to 0.23.2

2

package.json
{
"name": "@json-layout/vocabulary",
"version": "0.23.1",
"version": "0.23.2",
"description": "Main JSON Layout vocabulary as JSON schemas and Typescript types. Also contains some small utility functions to validate and normalize annotations.",

@@ -5,0 +5,0 @@ "type": "module",

@@ -84,3 +84,8 @@ /**

focusable: true,
emitsBlur: true
emitsBlur: true,
schema: {
properties: {
placeholder: { type: 'string' }
}
}
},

@@ -91,3 +96,8 @@ {

focusable: true,
emitsBlur: true
emitsBlur: true,
schema: {
properties: {
placeholder: { type: 'string' }
}
}
},

@@ -103,3 +113,4 @@ {

min: { type: 'number' },
max: { type: 'number' }
max: { type: 'number' },
placeholder: { type: 'string' }
}

@@ -206,3 +217,4 @@ }

properties: {
accept: { type: 'string' }
accept: { type: 'string' },
placeholder: { type: 'string' }
}

@@ -209,0 +221,0 @@ }

@@ -125,3 +125,6 @@ import type {

[k: string]: unknown;
});
}) & {
placeholder?: string;
[k: string]: unknown;
};
export type Textarea = {

@@ -141,3 +144,6 @@ comp?: "textarea";

[k: string]: unknown;
});
}) & {
placeholder?: string;
[k: string]: unknown;
};
export type NumberField = {

@@ -161,2 +167,3 @@ comp?: "number-field";

max?: number;
placeholder?: string;
[k: string]: unknown;

@@ -444,2 +451,3 @@ };

accept?: string;
placeholder?: string;
[k: string]: unknown;

@@ -446,0 +454,0 @@ };

@@ -105,3 +105,6 @@ import type { BaseCompObject, Expression, Children, GetItems, SelectItems } from '../normalized-layout/types.js';

[k: string]: unknown;
});
}) & {
placeholder?: string;
[k: string]: unknown;
};
export type Textarea = {

@@ -119,3 +122,6 @@ comp?: "textarea";

[k: string]: unknown;
});
}) & {
placeholder?: string;
[k: string]: unknown;
};
export type NumberField = {

@@ -137,2 +143,3 @@ comp?: "number-field";

max?: number;
placeholder?: string;
[k: string]: unknown;

@@ -386,2 +393,3 @@ };

accept?: string;
placeholder?: string;
[k: string]: unknown;

@@ -388,0 +396,0 @@ };

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