@capra/core 1.8.0 → 1.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.
@@ -1,5 +1,23 @@
1
1
  # History/Changelogs/@capra-core
2
2
 
3
+ ### 1.8.2
4
+
5
+ #### Patch Changes
6
+
7
+ * [3c96dd2](https://bitbucket.org/cribl/capra-ui/commits/3c96dd2): Fix RadioTile styles
8
+ * [b2e44e1](https://bitbucket.org/cribl/capra-ui/commits/b2e44e1): Fix issue where modal content did not overflow correctly
9
+ * [f3ede8e](https://bitbucket.org/cribl/capra-ui/commits/f3ede8e): Update tooling to use TypeScript 7.0
10
+ * [325f503](https://bitbucket.org/cribl/capra-ui/commits/325f503): Fixed misaligned CSS styles for Menu
11
+ * [24ae5a0](https://bitbucket.org/cribl/capra-ui/commits/24ae5a0): Fix TabNav border styling
12
+ * Updated dependencies [f3ede8e](https://bitbucket.org/cribl/capra-ui/commits/f3ede8e) — Update tooling to use TypeScript 7.0
13
+ * @capra/icons\@1.7.1
14
+
15
+ ### 1.8.1
16
+
17
+ #### Patch Changes
18
+
19
+ * [1ebcee1](https://bitbucket.org/cribl/capra-ui/commits/1ebcee1): Fix issue where top-level links in `TabNav` caused a full page refresh when used with `RouterProvider`
20
+
3
21
  ### 1.8.0
4
22
 
5
23
  #### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capra/core",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "type": "module",
6
6
  "description": "Core React components for the Capra design system",
@@ -35,25 +35,24 @@
35
35
  "dependencies": {
36
36
  "react-aria": "^3.48.0",
37
37
  "react-aria-components": "^1.17.0",
38
- "@capra/icons": "1.7.0"
38
+ "@capra/icons": "1.7.1"
39
39
  },
40
40
  "devDependencies": {
41
- "@ant-design/icons": "4.8.3",
42
41
  "clsx": "^2.1.1",
43
42
  "@internationalized/date": "3.12.1",
44
43
  "antd": "4.24.16",
45
44
  "storybook": "^10.4.6",
46
- "tsdown": "^0.22.0",
47
- "@private/building": "0.0.4",
48
- "@capra/theme": "1.3.0",
49
- "@private/linting": "0.0.0",
50
- "@private/testing": "0.0.7",
51
- "@private/stories": "0.0.0"
45
+ "tsdown": "^0.22.7",
46
+ "@private/building": "0.0.5",
47
+ "@capra/theme": "1.3.1",
48
+ "@private/stories": "0.0.0",
49
+ "@private/linting": "0.0.1",
50
+ "@private/testing": "0.0.7"
52
51
  },
53
52
  "scripts": {
54
53
  "clean": "rm -rf ./dist",
55
54
  "build": "tsdown",
56
55
  "lint": "capra-linter",
57
- "typecheck": "tsgo --noEmit"
56
+ "typecheck": "tsc --noEmit"
58
57
  }
59
58
  }