@codezee/sixtify-brahma 0.2.328 → 0.2.329

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codezee/sixtify-brahma",
3
- "version": "0.2.328",
3
+ "version": "0.2.329",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/hardikranpariya/sixtify-brahma.git"
@@ -0,0 +1,44 @@
1
+ import { type SmartFieldSize } from "./smartFieldInputStyles";
2
+ import type { PredefinedCurrencyConfig } from "../../../FormFields/CurrencyField/predefinedOptions";
3
+ import type { ChangeEvent, InputHTMLAttributes } from "react";
4
+ export type SmartCurrencyFieldProps = {
5
+ errorMessage?: string;
6
+ size?: SmartFieldSize;
7
+ currencySymbol?: string;
8
+ decimalCharacter?: string;
9
+ digitGroupSeparator?: string;
10
+ decimalPlaces?: number;
11
+ decimalPlacesShownOnBlur?: number;
12
+ decimalPlacesShownOnFocus?: number;
13
+ minimumValue?: string | number;
14
+ maximumValue?: string | number;
15
+ outputFormat?: "string" | "number";
16
+ textAlign?: "right" | "left" | "center";
17
+ allowNegative?: boolean;
18
+ suffix?: string;
19
+ preDefined?: PredefinedCurrencyConfig;
20
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange"> & {
21
+ value?: number | string | null;
22
+ onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
23
+ };
24
+ export declare const SmartCurrencyField: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
25
+ errorMessage?: string;
26
+ size?: SmartFieldSize;
27
+ currencySymbol?: string;
28
+ decimalCharacter?: string;
29
+ digitGroupSeparator?: string;
30
+ decimalPlaces?: number;
31
+ decimalPlacesShownOnBlur?: number;
32
+ decimalPlacesShownOnFocus?: number;
33
+ minimumValue?: string | number;
34
+ maximumValue?: string | number;
35
+ outputFormat?: "string" | "number";
36
+ textAlign?: "right" | "left" | "center";
37
+ allowNegative?: boolean;
38
+ suffix?: string;
39
+ preDefined?: PredefinedCurrencyConfig;
40
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "size"> & {
41
+ value?: number | string | null;
42
+ onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
43
+ } & import("react").RefAttributes<HTMLInputElement>>>;
44
+ //# sourceMappingURL=SmartCurrencyField.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SmartCurrencyField.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/SmartCurrencyField.tsx"],"names":[],"mappings":"AASA,OAAO,EAQL,KAAK,cAAc,EACpB,MAAM,yBAAyB,CAAC;AAGjC,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,qDAAqD,CAAC;AACpG,OAAO,KAAK,EACV,WAAW,EAEX,mBAAmB,EAEpB,MAAM,OAAO,CAAC;AAEf,MAAM,MAAM,uBAAuB,GAAG;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,YAAY,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IACnC,SAAS,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;IACxC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACvC,GAAG,IAAI,CACN,mBAAmB,CAAC,gBAAgB,CAAC,EACrC,MAAM,GAAG,OAAO,GAAG,UAAU,CAC9B,GAAG;IACA,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,WAAW,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;CAC3D,CAAC;AAoWJ,eAAO,MAAM,kBAAkB;mBAzXd,MAAM;WACd,cAAc;qBACJ,MAAM;uBACJ,MAAM;0BACH,MAAM;oBACZ,MAAM;+BACK,MAAM;gCACL,MAAM;mBACnB,MAAM,GAAG,MAAM;mBACf,MAAM,GAAG,MAAM;mBACf,QAAQ,GAAG,QAAQ;gBACtB,OAAO,GAAG,MAAM,GAAG,QAAQ;oBACvB,OAAO;aACd,MAAM;iBACF,wBAAwB;;YAK3B,MAAM,GAAG,MAAM,GAAG,IAAI;eACnB,CAAC,KAAK,EAAE,WAAW,CAAC,gBAAgB,CAAC,KAAK,IAAI;qDAoZ5D,CAAC"}
@@ -1,3 +1,4 @@
1
+ export * from "./SmartCurrencyField";
1
2
  export * from "./SmartDialogSelect";
2
3
  export * from "./SmartSelectField";
3
4
  export * from "./SmartAutocompleteField";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC"}