@graphcommerce/next-ui 4.31.0-canary.2 → 4.31.0-canary.4

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.
@@ -214,13 +214,9 @@ export function ActionCard(props: ActionCardProps) {
214
214
  zIndex: 1,
215
215
  },
216
216
  '&.disabled': {
217
- '& *': {
218
- opacity: theme.palette.action.disabledOpacity,
219
- },
220
- background: alpha(
221
- theme.palette.action.disabledBackground,
222
- theme.palette.action.disabledOpacity / 10,
223
- ),
217
+ background: theme.palette.action.disabledBackground,
218
+ opacity: theme.palette.action.disabledOpacity,
219
+ color: theme.palette.action.disabled,
224
220
  },
225
221
  }),
226
222
  ...(Array.isArray(sx) ? sx : [sx]),
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.31.0-canary.4
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1732](https://github.com/graphcommerce-org/graphcommerce/pull/1732) [`4bf1f606f`](https://github.com/graphcommerce-org/graphcommerce/commit/4bf1f606f3281a2664d6e2a70202a22af4d2c849) - fix customer service scrollSnapAlign ([@StefanAngenent](https://github.com/StefanAngenent))
8
+
9
+ ## 4.31.0-canary.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`a0eefa762`](https://github.com/graphcommerce-org/graphcommerce/commit/a0eefa762f93f817f506b87753dfe0b92e3318f8) - Added better disabled state for an ActionCard ([@paales](https://github.com/paales))
14
+
3
15
  ## 4.31.0-canary.2
4
16
 
5
17
  ## 4.31.0-canary.1
@@ -396,7 +396,6 @@ export function OverlayBase(incommingProps: LayoutOverlayBaseProps) {
396
396
  '&.variantSmBottom': {
397
397
  borderTopLeftRadius: `${theme.shape.borderRadius * 3}px`,
398
398
  borderTopRightRadius: `${theme.shape.borderRadius * 3}px`,
399
- scrollSnapAlign: 'end',
400
399
  },
401
400
  '&.sizeSmFloating': {
402
401
  borderRadius: `${theme.shape.borderRadius * 3}px`,
@@ -408,7 +407,6 @@ export function OverlayBase(incommingProps: LayoutOverlayBaseProps) {
408
407
  '&.variantSmRight.sizeSmFull': {
409
408
  paddingBottom: '1px',
410
409
  minHeight: clientSizeCssVar.y,
411
- scrollSnapAlign: 'end',
412
410
  },
413
411
  },
414
412
  [theme.breakpoints.up('md')]: {
@@ -416,7 +414,6 @@ export function OverlayBase(incommingProps: LayoutOverlayBaseProps) {
416
414
 
417
415
  '&.sizeMdFull.variantMdBottom': {
418
416
  minHeight: `calc(${clientSizeCssVar.y} - ${mdSpacingTop})`,
419
- scrollSnapAlign: 'end',
420
417
  },
421
418
  '&.sizeMdFull.variantMdLeft': {
422
419
  paddingBottom: '1px',
@@ -425,7 +422,6 @@ export function OverlayBase(incommingProps: LayoutOverlayBaseProps) {
425
422
  '&.sizeMdFull.variantMdRight': {
426
423
  paddingBottom: '1px',
427
424
  minHeight: clientSizeCssVar.y,
428
- scrollSnapAlign: 'end',
429
425
  },
430
426
 
431
427
  '&.variantMdBottom': {
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": "4.31.0-canary.2",
5
+ "version": "4.31.0-canary.4",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "sideEffects": false,
@@ -19,10 +19,10 @@
19
19
  "@emotion/react": "^11.9.3",
20
20
  "@emotion/server": "^11.4.0",
21
21
  "@emotion/styled": "^11.9.3",
22
- "@graphcommerce/framer-next-pages": "4.31.0-canary.2",
23
- "@graphcommerce/framer-scroller": "4.31.0-canary.2",
24
- "@graphcommerce/framer-utils": "4.31.0-canary.2",
25
- "@graphcommerce/image": "4.31.0-canary.2",
22
+ "@graphcommerce/framer-next-pages": "4.31.0-canary.4",
23
+ "@graphcommerce/framer-scroller": "4.31.0-canary.4",
24
+ "@graphcommerce/framer-utils": "4.31.0-canary.4",
25
+ "@graphcommerce/image": "4.31.0-canary.4",
26
26
  "cookie": "^0.5.0",
27
27
  "react-is": "^18.2.0",
28
28
  "schema-dts": "^1.1.0"