@akinon/next 1.69.0 → 1.70.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/CHANGELOG.md +6 -0
- package/components/input.tsx +19 -7
- package/components/price.tsx +3 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/components/input.tsx
CHANGED
|
@@ -1,17 +1,28 @@
|
|
|
1
1
|
import clsx from 'clsx';
|
|
2
|
-
import { forwardRef, FocusEvent, useState } from 'react';
|
|
2
|
+
import { forwardRef, FocusEvent, useState, Ref } from 'react';
|
|
3
3
|
import { Controller } from 'react-hook-form';
|
|
4
|
-
import
|
|
4
|
+
import { PatternFormat, PatternFormatProps } from 'react-number-format';
|
|
5
5
|
import { InputProps } from '../types';
|
|
6
6
|
import { twMerge } from 'tailwind-merge';
|
|
7
7
|
|
|
8
|
+
const PatternFormatWithRef = forwardRef(
|
|
9
|
+
(props: PatternFormatProps, ref: Ref<HTMLInputElement>) => {
|
|
10
|
+
return <PatternFormat {...props} getInputRef={ref} />;
|
|
11
|
+
}
|
|
12
|
+
);
|
|
13
|
+
PatternFormatWithRef.displayName = 'PatternFormatWithRef';
|
|
14
|
+
|
|
8
15
|
export const Input = forwardRef<
|
|
9
16
|
HTMLInputElement,
|
|
10
17
|
InputProps &
|
|
11
18
|
Pick<
|
|
12
|
-
|
|
13
|
-
'
|
|
14
|
-
>
|
|
19
|
+
PatternFormatProps,
|
|
20
|
+
'mask' | 'allowEmptyFormatting' | 'onValueChange'
|
|
21
|
+
> & {
|
|
22
|
+
format?: string;
|
|
23
|
+
defaultValue?: string;
|
|
24
|
+
type?: string;
|
|
25
|
+
}
|
|
15
26
|
>((props, ref) => {
|
|
16
27
|
const [focused, setFocused] = useState(false);
|
|
17
28
|
const [hasValue, setHasValue] = useState(false);
|
|
@@ -36,6 +47,7 @@ export const Input = forwardRef<
|
|
|
36
47
|
),
|
|
37
48
|
props.className
|
|
38
49
|
);
|
|
50
|
+
|
|
39
51
|
const inputProps: any = {
|
|
40
52
|
id,
|
|
41
53
|
ref,
|
|
@@ -78,14 +90,14 @@ export const Input = forwardRef<
|
|
|
78
90
|
<Controller
|
|
79
91
|
name={props.name ?? ''}
|
|
80
92
|
control={props.control}
|
|
81
|
-
defaultValue={false}
|
|
82
93
|
render={({ field }) => (
|
|
83
|
-
<
|
|
94
|
+
<PatternFormatWithRef
|
|
84
95
|
format={format}
|
|
85
96
|
mask={mask ?? ''}
|
|
86
97
|
{...rest}
|
|
87
98
|
{...field}
|
|
88
99
|
{...inputProps}
|
|
100
|
+
type={props.type as 'text' | 'password' | 'tel'}
|
|
89
101
|
/>
|
|
90
102
|
)}
|
|
91
103
|
/>
|
package/components/price.tsx
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { useMemo } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import { NumericFormat, NumericFormatProps } from 'react-number-format';
|
|
3
3
|
import { getCurrency } from '@akinon/next/utils';
|
|
4
4
|
import { useLocalization } from '@akinon/next/hooks';
|
|
5
5
|
import { PriceProps } from '../types';
|
|
6
6
|
import Settings from 'settings';
|
|
7
7
|
|
|
8
|
-
export const Price = (props:
|
|
8
|
+
export const Price = (props: NumericFormatProps & PriceProps) => {
|
|
9
9
|
const {
|
|
10
10
|
value,
|
|
11
11
|
currencyCode,
|
|
@@ -59,7 +59,7 @@ export const Price = (props: NumberFormatProps & PriceProps) => {
|
|
|
59
59
|
).decimalScale;
|
|
60
60
|
|
|
61
61
|
return (
|
|
62
|
-
<
|
|
62
|
+
<NumericFormat
|
|
63
63
|
value={displayValue}
|
|
64
64
|
displayType={displayType}
|
|
65
65
|
thousandSeparator={thousandSeparator}
|
|
@@ -68,7 +68,6 @@ export const Price = (props: NumberFormatProps & PriceProps) => {
|
|
|
68
68
|
fixedDecimalScale={fixedDecimalScale}
|
|
69
69
|
prefix={!useCurrencyAfterPrice ? currency : undefined}
|
|
70
70
|
suffix={useCurrencyAfterPrice ? currency : undefined}
|
|
71
|
-
isNumericString={true}
|
|
72
71
|
{...rest}
|
|
73
72
|
/>
|
|
74
73
|
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/next",
|
|
3
3
|
"description": "Core package for Project Zero Next",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.70.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"set-cookie-parser": "2.6.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@akinon/eslint-plugin-projectzero": "1.
|
|
33
|
+
"@akinon/eslint-plugin-projectzero": "1.70.0",
|
|
34
34
|
"@types/react-redux": "7.1.30",
|
|
35
35
|
"@types/set-cookie-parser": "2.4.7",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "6.7.4",
|