@graphcommerce/next-ui 7.1.0-canary.27 → 7.1.0-canary.28
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.
|
@@ -55,6 +55,7 @@ const parts = [
|
|
|
55
55
|
'after',
|
|
56
56
|
'secondaryAction',
|
|
57
57
|
'reset',
|
|
58
|
+
'end',
|
|
58
59
|
] as const
|
|
59
60
|
const name = 'ActionCard'
|
|
60
61
|
|
|
@@ -317,6 +318,7 @@ export function ActionCard(props: ActionCardProps) {
|
|
|
317
318
|
</Box>
|
|
318
319
|
|
|
319
320
|
<Box
|
|
321
|
+
className={classes.end}
|
|
320
322
|
sx={{
|
|
321
323
|
display: 'flex',
|
|
322
324
|
flexDirection: 'column',
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.1.0-canary.28
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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))
|
|
8
|
+
|
|
3
9
|
## 7.1.0-canary.27
|
|
4
10
|
|
|
5
11
|
## 7.1.0-canary.26
|
|
@@ -102,6 +102,9 @@ export function TextInputNumber(props: TextInputNumberProps) {
|
|
|
102
102
|
width: responsiveVal(90, 120),
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
|
+
'& input[type=number]': {
|
|
106
|
+
'-moz-appearance': 'textfield',
|
|
107
|
+
},
|
|
105
108
|
'& .MuiOutlinedInput-root': {
|
|
106
109
|
px: '3px',
|
|
107
110
|
display: 'grid',
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "7.1.0-canary.
|
|
5
|
+
"version": "7.1.0-canary.28",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"sideEffects": false,
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"@emotion/react": "^11.11.1",
|
|
19
19
|
"@emotion/server": "^11.11.0",
|
|
20
20
|
"@emotion/styled": "^11.11.0",
|
|
21
|
-
"@graphcommerce/framer-next-pages": "7.1.0-canary.
|
|
22
|
-
"@graphcommerce/framer-scroller": "7.1.0-canary.
|
|
23
|
-
"@graphcommerce/framer-utils": "7.1.0-canary.
|
|
24
|
-
"@graphcommerce/image": "7.1.0-canary.
|
|
21
|
+
"@graphcommerce/framer-next-pages": "7.1.0-canary.28",
|
|
22
|
+
"@graphcommerce/framer-scroller": "7.1.0-canary.28",
|
|
23
|
+
"@graphcommerce/framer-utils": "7.1.0-canary.28",
|
|
24
|
+
"@graphcommerce/image": "7.1.0-canary.28",
|
|
25
25
|
"cookie": "^0.5.0",
|
|
26
26
|
"react-is": "^18.2.0",
|
|
27
27
|
"schema-dts": "^1.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@graphcommerce/eslint-config-pwa": "7.1.0-canary.
|
|
31
|
-
"@graphcommerce/prettier-config-pwa": "7.1.0-canary.
|
|
32
|
-
"@graphcommerce/typescript-config-pwa": "7.1.0-canary.
|
|
30
|
+
"@graphcommerce/eslint-config-pwa": "7.1.0-canary.28",
|
|
31
|
+
"@graphcommerce/prettier-config-pwa": "7.1.0-canary.28",
|
|
32
|
+
"@graphcommerce/typescript-config-pwa": "7.1.0-canary.28",
|
|
33
33
|
"@types/cookie": "^0.5.2",
|
|
34
34
|
"@types/react-is": "^18.2.1",
|
|
35
35
|
"typescript": "5.2.2"
|