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

@fun-forge/dev-tools

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fun-forge/dev-tools - npm Package Compare versions

Comparing version 1.0.1-alpha.4 to 1.0.1-alpha.5

6

dist/behaviour/index.d.ts
export interface IBaseDialogProps {
title: string;
description: string;
positiveButton: Pick<IButtonProps, "title" | "enabled">;
negativeButton: Pick<IButtonProps, "title" | "enabled">;
positiveButton: Pick<IButtonProps, "title" | "disabled">;
negativeButton: Pick<IButtonProps, "title" | "disabled">;
closeable?: boolean;

@@ -14,4 +14,4 @@ }

title: string;
enabled: boolean;
disabled: boolean;
onPress: () => void;
}

@@ -35,3 +35,3 @@ "use strict";

positiveBtn.textContent = positiveButton.title;
positiveBtn.disabled = !positiveButton.enabled;
positiveBtn.disabled = !positiveButton.disabled;
positiveBtn.style.backgroundColor = "purple";

@@ -48,3 +48,3 @@ positiveBtn.style.color = "white";

negativeBtn.textContent = negativeButton.title;
negativeBtn.disabled = !negativeButton.enabled;
negativeBtn.disabled = !negativeButton.disabled;
negativeBtn.style.backgroundColor = "white";

@@ -51,0 +51,0 @@ negativeBtn.style.color = "black";

{
"name": "@fun-forge/dev-tools",
"version": "1.0.1-alpha.4",
"version": "1.0.1-alpha.5",
"description": "used to build up telegram mini games",

@@ -19,3 +19,3 @@ "repository": "https://github.com/funforgeofficial/devTools.git",

"clean": "tsc --build --clean",
"publish": "tsc --build && npm publish --access public"
"publish": "tsc && npm publish --access public"
},

@@ -22,0 +22,0 @@ "dependencies": {

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