@capra/core 1.8.1 → 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.
- package/dist/index.cjs +66 -69
- package/dist/index.d.cts +546 -624
- package/dist/index.d.mts +546 -624
- package/dist/index.mjs +52 -54
- package/dist/style.css +142 -142
- package/docs/history-changelogs-capra-core--docs.md +12 -0
- package/package.json +9 -10
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
3
15
|
### 1.8.1
|
|
4
16
|
|
|
5
17
|
#### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capra/core",
|
|
3
|
-
"version": "1.8.
|
|
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.
|
|
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.
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@private/
|
|
50
|
-
"@private/
|
|
51
|
-
"@private/
|
|
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": "
|
|
56
|
+
"typecheck": "tsc --noEmit"
|
|
58
57
|
}
|
|
59
58
|
}
|