@mcurros2/microm 1.1.130-0 → 1.1.132-0
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/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -908,7 +908,7 @@ export function formatTime(value: Value, locale?: string, dateOptions?: Intl.Dat
|
|
|
908
908
|
export function formatNumber(value: Value, locale?: string): string;
|
|
909
909
|
export function convertDateToNative(value: string): Date;
|
|
910
910
|
export function formatSQLValue(value: Value, sqlType: SQLType, locale?: string): string;
|
|
911
|
-
export function
|
|
911
|
+
export function convertToNativeValue(value: Value, sqlType: SQLType): Value;
|
|
912
912
|
export interface UseLocaleFormatProps {
|
|
913
913
|
initialLocale?: string;
|
|
914
914
|
}
|
|
@@ -917,7 +917,7 @@ export function useLocaleFormat(props: UseLocaleFormatProps): {
|
|
|
917
917
|
locale: string | undefined;
|
|
918
918
|
setLocale: import("react").Dispatch<import("react").SetStateAction<string | undefined>>;
|
|
919
919
|
formatValue: (value: Value, sqlType: SQLType) => string;
|
|
920
|
-
|
|
920
|
+
getNativeValue: (value: Value, sqlType: SQLType) => Value;
|
|
921
921
|
formatColumnValue: (col: EntityColumn<Value>) => string;
|
|
922
922
|
};
|
|
923
923
|
export const UseImportDataDefaultProps: {
|
|
@@ -2540,6 +2540,7 @@ export function useAncestorResize(minSize?: SizeInput): {
|
|
|
2540
2540
|
size: Size;
|
|
2541
2541
|
};
|
|
2542
2542
|
export function useResponsiveWidth(maxWidthRem: string, paddingRem: string): string;
|
|
2543
|
+
export function useViewportHeightVariable(): void;
|
|
2543
2544
|
export interface UseLookupSelectOptions {
|
|
2544
2545
|
parentKeys?: ValuesObject;
|
|
2545
2546
|
selectDataState: useStateReturnType<SelectItem[]>;
|