@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.70.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f046f8e: ZERO-2575: update version for react-number-format
8
+
3
9
  ## 1.69.0
4
10
 
5
11
  ### Minor Changes
@@ -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 NumberFormat, { NumberFormatProps } from 'react-number-format';
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
- NumberFormatProps,
13
- 'format' | 'mask' | 'allowEmptyFormatting' | 'onValueChange'
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
- <NumberFormat
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
  />
@@ -1,11 +1,11 @@
1
1
  import { useMemo } from 'react';
2
- import NumberFormat, { NumberFormatProps } from 'react-number-format';
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: NumberFormatProps & PriceProps) => {
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
- <NumberFormat
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.69.0",
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.69.0",
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",