@capra/core 1.15.0 → 1.15.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 +115 -115
- package/dist/index.d.cts +4 -4
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +115 -115
- package/dist/style.css +237 -236
- package/docs/core-link--design.md +1 -1
- package/docs/foundation-page-templates--docs.md +4 -4
- package/docs/history-changelogs-capra-core--docs.md +15 -0
- package/package.json +3 -3
|
@@ -16,7 +16,7 @@ in a new tab.
|
|
|
16
16
|
### Client-side Routing
|
|
17
17
|
|
|
18
18
|
Links support client-side routing out of the box when Capra's `RouterProvider` is used. See the
|
|
19
|
-
[Conventions](/
|
|
19
|
+
[Conventions](/llms/conventions--docs.txt#client-side-routing) page for more details.
|
|
20
20
|
|
|
21
21
|
## Best Practices
|
|
22
22
|
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
When building a new page, always start with the page layout. Follow the guidelines in the documents below to ensure the page is styled and structured correctly.
|
|
6
6
|
|
|
7
|
-
* [Navigation](/
|
|
7
|
+
* [Navigation](/llms/foundation-page-templates-navigation--docs.txt)
|
|
8
8
|
|
|
9
9
|
## Templates
|
|
10
10
|
|
|
11
11
|
Page templates provide a starting point for scaffolding new pages using the Capra design system.
|
|
12
12
|
|
|
13
|
-
* [Overview](/
|
|
14
|
-
* [Tables](/
|
|
15
|
-
* [Setup Config](/
|
|
13
|
+
* [Overview](/llms/foundation-page-templates-overview--docs.txt) - Orient the user, surface the insights that matters, start work (preferably via AI), then let them drill.
|
|
14
|
+
* [Tables](/llms/foundation-page-templates-tables--docs.txt) - Provide an easily parsed list of objects.
|
|
15
|
+
* [Setup Config](/llms/foundation-page-templates-setup-config--docs.txt) - Guide the user through the setup process or post-setup configuration.
|
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# History/Changelogs/@capra-core
|
|
2
2
|
|
|
3
|
+
### 1.15.2
|
|
4
|
+
|
|
5
|
+
#### Patch Changes
|
|
6
|
+
|
|
7
|
+
* [f4d82fb](https://bitbucket.org/cribl/capra-ui/commits/f4d82fb): Update secondary button background to avoid opacity
|
|
8
|
+
|
|
9
|
+
### 1.15.1
|
|
10
|
+
|
|
11
|
+
#### Patch Changes
|
|
12
|
+
|
|
13
|
+
* [ed60d31](https://bitbucket.org/cribl/capra-ui/commits/ed60d31): Improve style consistency by replacing design token references via CSS variables with `token()`
|
|
14
|
+
* [0305bbd](https://bitbucket.org/cribl/capra-ui/commits/0305bbd): Fix Checkbox label spacing
|
|
15
|
+
* Updated dependencies [ed60d31](https://bitbucket.org/cribl/capra-ui/commits/ed60d31) — Improve style consistency by replacing design token references via CSS variables with `token()`
|
|
16
|
+
* @capra/icons\@1.10.1
|
|
17
|
+
|
|
3
18
|
### 1.15.0
|
|
4
19
|
|
|
5
20
|
#### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capra/core",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.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,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"react-aria": "^3.48.0",
|
|
37
37
|
"react-aria-components": "^1.17.0",
|
|
38
|
-
"@capra/icons": "^1.10.
|
|
38
|
+
"@capra/icons": "^1.10.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clsx": "^2.1.1",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"tsdown": "^0.22.7",
|
|
46
46
|
"@capra/theme": "^1.6.0",
|
|
47
47
|
"@private/building": "^0.1.2",
|
|
48
|
-
"@private/stories": "^0.0.0",
|
|
49
48
|
"@private/linting": "^0.0.1",
|
|
49
|
+
"@private/stories": "^0.0.0",
|
|
50
50
|
"@private/testing": "^0.0.7"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|