braid-design-system 32.8.0 → 32.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,21 @@
1
1
  # braid-design-system
2
2
 
3
+ ## 32.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - **Drawer, Dialog:** Increase gutter around close button ([#1328](https://github.com/seek-oss/braid-design-system/pull/1328))
8
+
9
+ Fix for a regression where the gutter around the close button was reduced — resulting in visually clashing with the content when scrolling.
10
+
11
+ ## 32.8.1
12
+
13
+ ### Patch Changes
14
+
15
+ - **seekJobs:** Update visited link colour tokens ([#1323](https://github.com/seek-oss/braid-design-system/pull/1323))
16
+
17
+ Darken the visited link colour tokens within the `seekjobs` theme.
18
+
3
19
  ## 32.8.0
4
20
 
5
21
  ### Minor Changes
@@ -4530,12 +4530,13 @@ const ModalContent = ({
4530
4530
  paddingTop: modalPadding,
4531
4531
  paddingRight: position !== "center" ? gutters : modalPadding,
4532
4532
  className: position === "center" && styles_lib_components_private_Modal_Modal_css_cjs.maxSize[position],
4533
- children: /* @__PURE__ */ jsxRuntime.jsx(
4533
+ children: /* @__PURE__ */ jsxRuntime.jsx(ToastContext.Bleed, { space: "xsmall", children: /* @__PURE__ */ jsxRuntime.jsx(
4534
4534
  ToastContext.Box,
4535
4535
  {
4536
4536
  position: "relative",
4537
4537
  background: "surface",
4538
4538
  borderRadius: "full",
4539
+ padding: "xsmall",
4539
4540
  className: [styles_lib_components_private_Modal_Modal_css_cjs.closeIconOffset, styles_lib_components_private_Modal_Modal_css_cjs.pointerEventsAll],
4540
4541
  children: /* @__PURE__ */ jsxRuntime.jsx(
4541
4542
  ToastContext.ButtonIcon,
@@ -4550,7 +4551,7 @@ const ModalContent = ({
4550
4551
  }
4551
4552
  )
4552
4553
  }
4553
- )
4554
+ ) })
4554
4555
  }
4555
4556
  )
4556
4557
  ]
@@ -4522,12 +4522,13 @@ const ModalContent = ({
4522
4522
  paddingTop: modalPadding,
4523
4523
  paddingRight: position !== "center" ? gutters : modalPadding,
4524
4524
  className: position === "center" && maxSize[position],
4525
- children: /* @__PURE__ */ jsx(
4525
+ children: /* @__PURE__ */ jsx(Bleed, { space: "xsmall", children: /* @__PURE__ */ jsx(
4526
4526
  Box,
4527
4527
  {
4528
4528
  position: "relative",
4529
4529
  background: "surface",
4530
4530
  borderRadius: "full",
4531
+ padding: "xsmall",
4531
4532
  className: [closeIconOffset, pointerEventsAll],
4532
4533
  children: /* @__PURE__ */ jsx(
4533
4534
  ButtonIcon,
@@ -4542,7 +4543,7 @@ const ModalContent = ({
4542
4543
  }
4543
4544
  )
4544
4545
  }
4545
- )
4546
+ ) })
4546
4547
  }
4547
4548
  )
4548
4549
  ]
@@ -162,8 +162,8 @@ const tokens = sideEffects_lib_themes_baseTokens_apac_cjs.makeTokens({
162
162
  link: sideEffects_lib_themes_baseTokens_apac_cjs.palette.violet["500"],
163
163
  linkHover: sideEffects_lib_themes_baseTokens_apac_cjs.palette.violet["500"],
164
164
  linkLight: sideEffects_lib_themes_baseTokens_apac_cjs.palette.violet["300"],
165
- linkVisited: sideEffects_lib_themes_baseTokens_apac_cjs.palette.purple["600"],
166
- linkLightVisited: sideEffects_lib_themes_baseTokens_apac_cjs.palette.purple["300"],
165
+ linkVisited: sideEffects_lib_themes_baseTokens_apac_cjs.palette.purple["800"],
166
+ linkLightVisited: sideEffects_lib_themes_baseTokens_apac_cjs.palette.purple["200"],
167
167
  promote: sideEffects_lib_themes_baseTokens_apac_cjs.palette.purple["700"],
168
168
  promoteLight: sideEffects_lib_themes_baseTokens_apac_cjs.palette.purple["300"],
169
169
  rating: sideEffects_lib_themes_baseTokens_apac_cjs.palette.orange["600"]
@@ -161,8 +161,8 @@ const tokens = makeTokens({
161
161
  link: palette.violet["500"],
162
162
  linkHover: palette.violet["500"],
163
163
  linkLight: palette.violet["300"],
164
- linkVisited: palette.purple["600"],
165
- linkLightVisited: palette.purple["300"],
164
+ linkVisited: palette.purple["800"],
165
+ linkLightVisited: palette.purple["200"],
166
166
  promote: palette.purple["700"],
167
167
  promoteLight: palette.purple["300"],
168
168
  rating: palette.orange["600"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braid-design-system",
3
- "version": "32.8.0",
3
+ "version": "32.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": {
@@ -189,7 +189,7 @@
189
189
  "react-dom": "^18.2.0",
190
190
  "react-router-dom": "^6.3.0",
191
191
  "sanitize-html": "^2.7.0",
192
- "sku": "12.1.0",
192
+ "sku": "12.1.2",
193
193
  "svgo": "^2.8.0",
194
194
  "title-case": "^3.0.3"
195
195
  },