@kiva/kv-tokens 3.6.0 → 3.6.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 +19 -0
- package/configs/tailwind.config.js +1 -1
- package/package.json +10 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.6.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.6.1...@kiva/kv-tokens@3.6.2) (2025-12-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* update caption styles and spacing within KvContentfulImg component ([0276c5c](https://github.com/kiva/kv-ui-elements/commit/0276c5c854334f429f5e2c684eeed18fb280d2fd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.6.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.6.0...@kiva/kv-tokens@3.6.1) (2025-12-16)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.6.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.5.1...@kiva/kv-tokens@3.6.0) (2025-11-10)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -215,7 +215,7 @@ export default {
|
|
|
215
215
|
fontSize: '0.875em',
|
|
216
216
|
},
|
|
217
217
|
blockquote: textStyles.textBlockquote,
|
|
218
|
-
'figure figcaption': textStyles.
|
|
218
|
+
'figure figcaption': textStyles.textBase,
|
|
219
219
|
'button:focus': {
|
|
220
220
|
outline: 'revert', // undo tailwind button focus styling
|
|
221
221
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -11,9 +11,17 @@
|
|
|
11
11
|
"lint": "eslint --ext .js ./",
|
|
12
12
|
"build": "node ./build/build"
|
|
13
13
|
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/kiva/kv-ui-elements.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/kiva/kv-ui-elements/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/kiva/kv-ui-elements/tree/main/%40kiva/kv-tokens#readme",
|
|
14
22
|
"dependencies": {
|
|
15
23
|
"@tailwindcss/typography": "^0.5.1",
|
|
16
24
|
"tailwindcss": "^3.4.3"
|
|
17
25
|
},
|
|
18
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "139510f7b600b98f4f9655cf911ac08212952881"
|
|
19
27
|
}
|