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

@types/jquery-knob

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jquery-knob - npm Package Compare versions

Comparing version 1.2.32 to 1.2.33

50

jquery-knob/index.d.ts

@@ -14,31 +14,31 @@ // Type definitions for jQuery Knob 1.2.13

*/
min?: number;
min?: number | undefined;
/**
* max value | default=100
*/
max?: number;
max?: number | undefined;
/**
* step size | default=1
*/
step?: number;
step?: number | undefined;
/**
* starting angle in degrees | default=0
*/
angleOffset?: number;
angleOffset?: number | undefined;
/**
* arc size in degrees | default=360
*/
angleArc?: number;
angleArc?: number | undefined;
/**
* stop at min & max on keydown/mousewheel | default=true
*/
stopper?: boolean;
stopper?: boolean | undefined;
/**
* disable input and events | default=false
*/
readOnly?: boolean;
readOnly?: boolean | undefined;
/**
* direction of progression | default=clockwise
*/
rotation?: string;
rotation?: string | undefined;
/**

@@ -49,67 +49,67 @@ * display mode "cursor", cursor size could be changed passing a

*/
cursor?: string | boolean;
cursor?: string | boolean | undefined;
/**
* gauge thickness
*/
thickness?: number;
thickness?: number | undefined;
/**
* gauge stroke endings | default=butt, round=rounded line endings
*/
lineCap?: string;
lineCap?: string | undefined;
/**
* dial width
*/
width?: number;
width?: number | undefined;
/**
* dial height
*/
height?: number;
height?: number | undefined;
/**
* default=true | false=hide input
*/
displayInput?: boolean;
displayInput?: boolean | undefined;
/**
* default=false | true=displays the previous value with transparency
*/
displayPrevious?: boolean;
displayPrevious?: boolean | undefined;
/**
* foreground color
*/
fgColor?: string;
fgColor?: string | undefined;
/**
* input value (number) color
*/
inputColor?: string;
inputColor?: string | undefined;
/**
* font family
*/
font?: string;
font?: string | undefined;
/**
* font weight
*/
fontWeight?: string;
fontWeight?: string | undefined;
/**
* background color
*/
bgColor?: string;
bgColor?: string | undefined;
/**
* executed on release
*/
release?: (value: number) => void;
release?: ((value: number) => void) | undefined;
/**
* executed at each change of the value
*/
change?: (value: number) => void;
change?: ((value: number) => void) | undefined;
/**
* when drawing the canvas
*/
draw?: () => void;
draw?: (() => void) | undefined;
/**
* triggered on [esc] keydown
*/
cancel?: () => void;
cancel?: (() => void) | undefined;
/**
* allows to format output (add unit %, ms...)
*/
format?: (value: number) => void;
format?: ((value: number) => void) | undefined;
}

@@ -116,0 +116,0 @@ }

{
"name": "@types/jquery-knob",
"version": "1.2.32",
"version": "1.2.33",
"description": "TypeScript definitions for jQuery Knob",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery-knob",
"license": "MIT",

@@ -24,4 +25,4 @@ "contributors": [

},
"typesPublisherContentHash": "72bd43b207b849fe2456aea50d1d33cdad6d510968e1eb48996b27f5c31c8c58",
"typeScriptVersion": "3.0"
"typesPublisherContentHash": "68e7e6816bad698c3843276bd3e170f4d637563560f5b4c6a30ad64f8cca02f3",
"typeScriptVersion": "3.6"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Fri, 15 May 2020 04:09:46 GMT
* Last updated: Thu, 08 Jul 2021 16:22:28 GMT
* Dependencies: [@types/jquery](https://npmjs.com/package/@types/jquery)

@@ -14,0 +14,0 @@ * Global values: none

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