New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bruit/types

Package Overview
Dependencies
Maintainers
2
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bruit/types - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

3

dist/enums/brt-field-type.d.ts

@@ -6,3 +6,4 @@ export declare enum BrtFieldType {

CHECKBOX = "checkbox",
RATING = "rating"
RATING = "rating",
SELECT = "select"
}

@@ -10,3 +10,4 @@ "use strict";

BrtFieldType["RATING"] = "rating";
BrtFieldType["SELECT"] = "select";
})(BrtFieldType = exports.BrtFieldType || (exports.BrtFieldType = {}));
// impact brtField interface if you edit this enum

@@ -5,3 +5,3 @@ import { BrtFieldType } from './../enums/brt-field-type';

label: string;
type: BrtFieldType | 'checkbox' | 'textarea' | 'email' | 'text' | 'rating';
type: BrtFieldType | 'checkbox' | 'textarea' | 'email' | 'text' | 'rating' | 'select';
required?: boolean;

@@ -8,0 +8,0 @@ value?: any;

{
"name": "@bruit/types",
"version": "0.3.1",
"version": "0.3.2",
"description": "Bruit.io typings",

@@ -9,3 +9,4 @@ "private": false,

"scripts": {
"build": "tsc"
"build": "tsc",
"prepublishOnly": "tsc"
},

@@ -36,2 +37,2 @@ "repository": {

}
}
}

@@ -6,5 +6,6 @@ export enum BrtFieldType {

CHECKBOX = 'checkbox',
RATING = 'rating'
RATING = 'rating',
SELECT = 'select'
}
// impact brtField interface if you edit this enum

@@ -6,3 +6,10 @@ import { BrtFieldType } from './../enums/brt-field-type';

label: string;
type: BrtFieldType | 'checkbox' | 'textarea' | 'email' | 'text' | 'rating';
type:
| BrtFieldType
| 'checkbox'
| 'textarea'
| 'email'
| 'text'
| 'rating'
| 'select';
required?: boolean;

@@ -9,0 +16,0 @@ value?: any;

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