@kiva/kv-tokens 2.11.0 → 2.11.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 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
+ ## [2.11.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.11.1...@kiva/kv-tokens@2.11.2) (2024-05-20)
7
+
8
+ **Note:** Version bump only for package @kiva/kv-tokens
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.11.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.11.0...@kiva/kv-tokens@2.11.1) (2024-04-25)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * increate h2 line height ([d30382d](https://github.com/kiva/kv-ui-elements/commit/d30382d99294e3769812f4f3aece645d3fdebf03))
20
+
21
+
22
+
23
+
24
+
6
25
  # [2.11.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.10.0...@kiva/kv-tokens@2.11.0) (2024-04-23)
7
26
 
8
27
 
@@ -100,7 +100,7 @@ const textStyles = (() => {
100
100
  fontSize: rem(fontSizes.h2.sm),
101
101
  fontWeight: fontWeights.medium,
102
102
  letterSpacing: em(letterSpacings.normal, fontSizes.h2.sm),
103
- lineHeight: lineHeights.tight,
103
+ lineHeight: lineHeights.normal,
104
104
  '@screen md': {
105
105
  fontSize: rem(fontSizes.h2.md),
106
106
  letterSpacing: em(letterSpacings['-0.3'], fontSizes.h2.md),
@@ -108,7 +108,6 @@ const textStyles = (() => {
108
108
  '@screen lg': {
109
109
  fontSize: rem(fontSizes.h2.lg),
110
110
  letterSpacing: em(letterSpacings['-0.3'], fontSizes.h2.lg),
111
- lineHeight: lineHeights['nearly-none'],
112
111
  },
113
112
  };
114
113
 
@@ -1,6 +1,5 @@
1
1
  const plugin = require('tailwindcss/plugin');
2
2
  const typographyPlugin = require('@tailwindcss/typography');
3
- const lineClampPlugin = require('@tailwindcss/line-clamp');
4
3
  const kivaTypography = require('./kivaTypography.cjs');
5
4
  const { defaultTheme, buildColorChoices } = require('./kivaColors.cjs');
6
5
  const designtokens = require('../primitives.json');
@@ -181,7 +180,6 @@ module.exports = {
181
180
  },
182
181
  plugins: [
183
182
  typographyPlugin, // prose plugin. See overrides in theme.extend.typography
184
- lineClampPlugin,
185
183
  plugin(({ addBase, addUtilities }) => {
186
184
  const { webFonts, textStyles, textBaseColor } = kivaTypography;
187
185
  addBase(webFonts);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "2.11.0",
3
+ "version": "2.11.2",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,9 +12,8 @@
12
12
  "build": "echo No build needed for @kiva/kv-tokens."
13
13
  },
14
14
  "dependencies": {
15
- "@tailwindcss/line-clamp": "^0.4.0",
16
15
  "@tailwindcss/typography": "^0.5.1",
17
- "tailwindcss": "^3.0.18"
16
+ "tailwindcss": "^3.4.3"
18
17
  },
19
- "gitHead": "9cd04b768af71aead30d08320229402bf3c79989"
18
+ "gitHead": "c6f35180e5a27c234e8c7f4ea19d7b267b842677"
20
19
  }