@kiva/kv-tokens 3.7.0 → 3.7.1

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
@@ -3,6 +3,17 @@
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.7.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.0...@kiva/kv-tokens@3.7.1) (2026-02-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * remove global button style application and rename class to button-link ([eb37275](https://github.com/kiva/kv-ui-elements/commit/eb37275c62b4730f16bdb9d28e5e35ca8d9650e3))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.7.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.6.4...@kiva/kv-tokens@3.7.0) (2026-02-11)
7
18
 
8
19
 
@@ -497,7 +497,7 @@ export const textStyles = (() => {
497
497
  },
498
498
  };
499
499
 
500
- const textButton = {
500
+ const textButtonLink = {
501
501
  fontFamily: fonts.sans,
502
502
  fontWeight: fontWeights.medium,
503
503
  fontSize: rem(semanticFontSizes.button.button),
@@ -547,7 +547,7 @@ export const textStyles = (() => {
547
547
  textHeadline,
548
548
  textSubHeadline,
549
549
  textTitle,
550
- textButton,
550
+ textButtonLink,
551
551
  textUpper,
552
552
  textLabel,
553
553
  textCaption,
@@ -204,7 +204,7 @@ export default {
204
204
  '-moz-osx-font-smoothing': 'grayscale',
205
205
  'text-rendering': 'optimizeLegibility',
206
206
  },
207
- button: { ...textStyles.textButton, fontWeight: 'inherit' },
207
+ button: { fontWeight: 'inherit' },
208
208
  h1: textStyles.textH1,
209
209
  h2: textStyles.textH2,
210
210
  h3: textStyles.textH3,
@@ -255,7 +255,7 @@ export default {
255
255
  '.text-headline': textStyles.textHeadline,
256
256
  '.text-subheadline': textStyles.textSubheadline,
257
257
  '.text-title': textStyles.textTitle,
258
- '.text-button': textStyles.textButton,
258
+ '.text-button-link': textStyles.textButtonLink,
259
259
  '.text-upper': textStyles.textUpper,
260
260
  '.text-caption': textStyles.textCaption,
261
261
  }, ['responsive']);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "3.7.0",
3
+ "version": "3.7.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -23,5 +23,5 @@
23
23
  "@tailwindcss/typography": "^0.5.1",
24
24
  "tailwindcss": "^3.4.3"
25
25
  },
26
- "gitHead": "cb5df34ff13efd0b41b531161b308dba6c43a7af"
26
+ "gitHead": "8ae76e2ab2c457b7dd52654cb154bbd2723904ef"
27
27
  }