braid-design-system 34.8.1 → 34.8.2

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
  # braid-design-system
2
2
 
3
+ ## 34.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - **Table, Dialog, Drawer, MenuRenderer:** Hide scroll overflow gradient when printing ([#2141](https://github.com/seek-oss/braid-design-system/pull/2141))
8
+
3
9
  ## 34.8.1
4
10
 
5
11
  ### Patch Changes
@@ -49,7 +49,8 @@ const mask = (0, _vanilla_extract_css.style)({
49
49
  `linear-gradient(to right, transparent 0, black ${left})`,
50
50
  `linear-gradient(to left, transparent 0, black ${right})`,
51
51
  `linear-gradient(to top, transparent 0, black ${bottom})`
52
- ].join(",")
52
+ ].join(","),
53
+ "@media": { print: { maskImage: "none" } }
53
54
  }, "mask");
54
55
  const maskLeft = (0, _vanilla_extract_css.style)({ vars: { [left]: scrollOverlaySize } }, "maskLeft");
55
56
  const maskRight = (0, _vanilla_extract_css.style)({ vars: { [right]: scrollOverlaySize } }, "maskRight");
@@ -49,7 +49,8 @@ const mask = style({
49
49
  `linear-gradient(to right, transparent 0, black ${left})`,
50
50
  `linear-gradient(to left, transparent 0, black ${right})`,
51
51
  `linear-gradient(to top, transparent 0, black ${bottom})`
52
- ].join(",")
52
+ ].join(","),
53
+ "@media": { print: { maskImage: "none" } }
53
54
  }, "mask");
54
55
  const maskLeft = style({ vars: { [left]: scrollOverlaySize } }, "maskLeft");
55
56
  const maskRight = style({ vars: { [right]: scrollOverlaySize } }, "maskRight");
@@ -4,7 +4,7 @@ import { ConditionalValue, RequiredConditionalValue } from "@vanilla-extract/spr
4
4
  declare const colorAtomicProperties: {
5
5
  conditions: {
6
6
  defaultCondition: "lightMode";
7
- conditionNames: ("lightMode" | "darkMode")[];
7
+ conditionNames: ("darkMode" | "lightMode")[];
8
8
  };
9
9
  styles: {
10
10
  readonly background: {
@@ -4,7 +4,7 @@ import { ConditionalValue, RequiredConditionalValue } from "@vanilla-extract/spr
4
4
  declare const colorAtomicProperties: {
5
5
  conditions: {
6
6
  defaultCondition: "lightMode";
7
- conditionNames: ("lightMode" | "darkMode")[];
7
+ conditionNames: ("darkMode" | "lightMode")[];
8
8
  };
9
9
  styles: {
10
10
  readonly background: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braid-design-system",
3
- "version": "34.8.1",
3
+ "version": "34.8.2",
4
4
  "description": "Themeable design system for the SEEK Group",
5
5
  "homepage": "https://seek-oss.github.io/braid-design-system/",
6
6
  "bugs": {