Socket
Socket
Sign inDemoInstall

@rshb/core-ui

Package Overview
Dependencies
180
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.0 to 0.6.0

4

amount/utils.ts

@@ -75,2 +75,4 @@ import {

export const getPrefixSymbol = (prefix: Prefix) => prefix ? PREFIX_SYMBOLS[prefix] + SPACE : null;
export const getCurrencySymbol = (currency: Currency) => SPACE + CURRENCY_SYMBOLS[currency];
export const getCurrencySymbol = (currency: Currency) =>
(currency in CURRENCY_SYMBOLS) ? SPACE + CURRENCY_SYMBOLS[currency] : null;
# Π˜ΡΡ‚ΠΎΡ€ΠΈΡ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ
## ВСрсия 0.6.0
- Tab: Π”ΠΎΠ±Π°Π²Π»Π΅Π½Π° Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ установки onClick.
- Amount: Π”ΠΎΠ±Π°Π²Π»Π΅Π½Π° Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Ρ‹ c ΠΎΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΉ Π² словарС Π²Π°Π»ΡŽΡ‚Ρ‹.
- Datepicker: Π”ΠΎΠ±Π°Π²Π»Π΅Π½Π° Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ очистки значСния Π² ΠΏΠΎΠ»Π΅ Π²Π²ΠΎΠ΄Π°.
- Datepicker: Π”ΠΎΠ±Π°Π²Π»Π΅Π½Π° Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Π²Ρ‹Π±ΠΎΡ€Π° Π΄ΠΈΠ°ΠΏΠ°Π·ΠΎΠ½Π° ΠΈΠ· ΠΎΠ΄Π½ΠΎΠΉ Π΄Π°Ρ‚Ρ‹.
- Select, Input: Π˜ΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΎ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅ Π³Ρ€Π°Π΄ΠΈΠ΅Π½Ρ‚Π° Π² Safari.
## ВСрсия 0.5.0

@@ -4,0 +11,0 @@ - Π”ΠΎΠ±Π°Π²Π»Π΅Π½ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ MaskInput.

@@ -26,3 +26,9 @@ import { DateValue } from "../types";

if (isValidDateString(date)) {
return new Date(date);
const [year, month, day] = date.split("-");
return new Date(
Number(year),
Number(month) - 1,
Number(day)
);
}

@@ -29,0 +35,0 @@

{
"name": "@rshb/core-ui",
"version": "0.5.0",
"version": "0.6.0",
"main": "index.ts",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -18,2 +18,6 @@ export type TabProps = {

disabled?: boolean;
/**
* ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Ρ‡ΠΈΠΊ Π²Ρ‹Π·Ρ‹Π²Π°Π΅ΠΌΡ‹ΠΉ ΠΏΡ€ΠΈ ΠΊΠ»ΠΈΠΊΠ΅ Π½Π° Π²ΠΊΠ»Π°Π΄ΠΊΡƒ
*/
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
};

@@ -20,0 +24,0 @@

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

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc