@graphcommerce/ecommerce-ui 7.1.0-canary.8 → 8.0.0-canary.40
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,77 @@
|
|
|
1
1
|
# @graphcommerce/ecommerce-ui
|
|
2
2
|
|
|
3
|
+
## 8.0.0-canary.40
|
|
4
|
+
|
|
5
|
+
## 7.1.0-canary.39
|
|
6
|
+
|
|
7
|
+
## 7.1.0-canary.38
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e426`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the ActionCardLayout ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
12
|
+
|
|
13
|
+
## 7.1.0-canary.37
|
|
14
|
+
|
|
15
|
+
## 7.1.0-canary.36
|
|
16
|
+
|
|
17
|
+
## 7.1.0-canary.35
|
|
18
|
+
|
|
19
|
+
## 7.1.0-canary.34
|
|
20
|
+
|
|
21
|
+
## 7.1.0-canary.33
|
|
22
|
+
|
|
23
|
+
## 7.1.0-canary.32
|
|
24
|
+
|
|
25
|
+
## 7.1.0-canary.31
|
|
26
|
+
|
|
27
|
+
## 7.1.0-canary.30
|
|
28
|
+
|
|
29
|
+
## 7.1.0-canary.29
|
|
30
|
+
|
|
31
|
+
## 7.1.0-canary.28
|
|
32
|
+
|
|
33
|
+
### Minor Changes
|
|
34
|
+
|
|
35
|
+
- [#2018](https://github.com/graphcommerce-org/graphcommerce/pull/2018) [`750aa6a72`](https://github.com/graphcommerce-org/graphcommerce/commit/750aa6a72710869d54244467253212e551d335e0) - Changed the layout of the succes page. We are using ActionCards right now to match the design of the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
36
|
+
|
|
37
|
+
## 7.1.0-canary.27
|
|
38
|
+
|
|
39
|
+
## 7.1.0-canary.26
|
|
40
|
+
|
|
41
|
+
## 7.1.0-canary.25
|
|
42
|
+
|
|
43
|
+
## 7.1.0-canary.24
|
|
44
|
+
|
|
45
|
+
## 7.1.0-canary.23
|
|
46
|
+
|
|
47
|
+
## 7.1.0-canary.22
|
|
48
|
+
|
|
49
|
+
## 7.1.0-canary.21
|
|
50
|
+
|
|
51
|
+
## 7.1.0-canary.20
|
|
52
|
+
|
|
53
|
+
## 7.1.0-canary.19
|
|
54
|
+
|
|
55
|
+
## 7.1.0-canary.18
|
|
56
|
+
|
|
57
|
+
## 7.1.0-canary.17
|
|
58
|
+
|
|
59
|
+
## 7.1.0-canary.16
|
|
60
|
+
|
|
61
|
+
## 7.1.0-canary.15
|
|
62
|
+
|
|
63
|
+
## 7.1.0-canary.14
|
|
64
|
+
|
|
65
|
+
## 7.1.0-canary.13
|
|
66
|
+
|
|
67
|
+
## 7.1.0-canary.12
|
|
68
|
+
|
|
69
|
+
## 7.1.0-canary.11
|
|
70
|
+
|
|
71
|
+
## 7.1.0-canary.10
|
|
72
|
+
|
|
73
|
+
## 7.1.0-canary.9
|
|
74
|
+
|
|
3
75
|
## 7.1.0-canary.8
|
|
4
76
|
|
|
5
77
|
## 7.0.2-canary.7
|
|
@@ -7,15 +7,7 @@ import {
|
|
|
7
7
|
} from '@graphcommerce/next-ui'
|
|
8
8
|
import { Controller, ControllerProps, FieldValues } from '@graphcommerce/react-hook-form'
|
|
9
9
|
import { i18n } from '@lingui/core'
|
|
10
|
-
import {
|
|
11
|
-
IconButton,
|
|
12
|
-
IconButtonProps,
|
|
13
|
-
SxProps,
|
|
14
|
-
Theme,
|
|
15
|
-
TextField,
|
|
16
|
-
TextFieldProps,
|
|
17
|
-
Fab,
|
|
18
|
-
} from '@mui/material'
|
|
10
|
+
import { IconButtonProps, SxProps, Theme, TextField, TextFieldProps, Fab } from '@mui/material'
|
|
19
11
|
|
|
20
12
|
export type NumberFieldElementProps<T extends FieldValues = FieldValues> = Omit<
|
|
21
13
|
TextFieldProps,
|
|
@@ -88,6 +80,9 @@ export function NumberFieldElement<T extends FieldValues>(props: NumberFieldElem
|
|
|
88
80
|
width: responsiveVal(90, 120),
|
|
89
81
|
},
|
|
90
82
|
{
|
|
83
|
+
'& input[type=number]': {
|
|
84
|
+
MozAppearance: 'textfield',
|
|
85
|
+
},
|
|
91
86
|
'& .MuiOutlinedInput-root': {
|
|
92
87
|
px: '2px',
|
|
93
88
|
display: 'grid',
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/ecommerce-ui",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "8.0.0-canary.40",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -11,23 +11,19 @@
|
|
|
11
11
|
"project": "./tsconfig.json"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
|
-
"dependencies": {
|
|
15
|
-
"@graphcommerce/graphql": "7.1.0-canary.8",
|
|
16
|
-
"@graphcommerce/next-ui": "7.1.0-canary.8",
|
|
17
|
-
"@graphcommerce/react-hook-form": "7.1.0-canary.8"
|
|
18
|
-
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"@graphcommerce/eslint-config-pwa": "7.1.0-canary.8",
|
|
21
|
-
"@graphcommerce/prettier-config-pwa": "7.1.0-canary.8",
|
|
22
|
-
"@graphcommerce/typescript-config-pwa": "7.1.0-canary.8"
|
|
23
|
-
},
|
|
24
14
|
"peerDependencies": {
|
|
25
|
-
"@
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "8.0.0-canary.40",
|
|
16
|
+
"@graphcommerce/graphql": "8.0.0-canary.40",
|
|
17
|
+
"@graphcommerce/next-ui": "8.0.0-canary.40",
|
|
18
|
+
"@graphcommerce/prettier-config-pwa": "8.0.0-canary.40",
|
|
19
|
+
"@graphcommerce/react-hook-form": "8.0.0-canary.40",
|
|
20
|
+
"@graphcommerce/typescript-config-pwa": "8.0.0-canary.40",
|
|
26
21
|
"@lingui/core": "^4.2.1",
|
|
27
22
|
"@lingui/macro": "^4.2.1",
|
|
23
|
+
"@lingui/react": "^4.2.1",
|
|
28
24
|
"@mui/material": "^5.10.16",
|
|
29
25
|
"framer-motion": "^10.0.0",
|
|
30
|
-
"next": "
|
|
26
|
+
"next": "*",
|
|
31
27
|
"react": "^18.2.0",
|
|
32
28
|
"react-dom": "^18.2.0"
|
|
33
29
|
}
|