@bigtablet/design-system 3.14.0 → 3.14.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.
Files changed (2) hide show
  1. package/dist/index.css +12 -3
  2. package/package.json +4 -2
package/dist/index.css CHANGED
@@ -2875,15 +2875,15 @@ body:has(.bottom_nav) {
2875
2875
  }
2876
2876
  .prose h1 {
2877
2877
  font-size: 24px;
2878
- font-weight: 400;
2878
+ font-weight: 700;
2879
2879
  line-height: 32px;
2880
- letter-spacing: 0px;
2880
+ letter-spacing: -0.01em;
2881
2881
  padding-bottom: 8px;
2882
2882
  border-bottom: 1px solid var(--bt-color-border-default);
2883
2883
  }
2884
2884
  .prose h2 {
2885
2885
  font-size: 20px;
2886
- font-weight: 400;
2886
+ font-weight: 700;
2887
2887
  line-height: 28px;
2888
2888
  letter-spacing: 0px;
2889
2889
  }
@@ -3034,20 +3034,29 @@ body:has(.bottom_nav) {
3034
3034
  }
3035
3035
  .prose_size_lg h1 {
3036
3036
  font-size: 28px;
3037
+ font-weight: 700;
3037
3038
  line-height: 36px;
3039
+ letter-spacing: -0.01em;
3038
3040
  }
3039
3041
  .prose_size_lg h2 {
3040
3042
  font-size: 24px;
3043
+ font-weight: 700;
3041
3044
  line-height: 32px;
3045
+ letter-spacing: -0.01em;
3042
3046
  }
3043
3047
  .prose_size_lg h3 {
3044
3048
  font-size: 20px;
3049
+ font-weight: 700;
3045
3050
  line-height: 28px;
3051
+ letter-spacing: 0px;
3046
3052
  }
3047
3053
  .prose_size_lg h4,
3048
3054
  .prose_size_lg h5,
3049
3055
  .prose_size_lg h6 {
3050
3056
  font-size: 18px;
3057
+ font-weight: 700;
3058
+ line-height: 24px;
3059
+ letter-spacing: 0px;
3051
3060
  line-height: 28px;
3052
3061
  }
3053
3062
  .prose_size_lg li {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigtablet/design-system",
3
- "version": "3.14.0",
3
+ "version": "3.14.1",
4
4
  "description": "Bigtablet Design System UI Components",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -46,7 +46,9 @@
46
46
  "test:watch": "vitest --project unit",
47
47
  "test:coverage": "vitest run --project unit --coverage",
48
48
  "test:storybook": "vitest run --project storybook",
49
- "lint:css": "stylelint 'src/ui/**/*.scss' 'src/styles/**/*.scss'",
49
+ "lint:css": "stylelint 'src/ui/**/*.scss' 'src/styles/**/*.scss' 'src/vanilla/**/*.scss'",
50
+ "check:css-vars": "scripts/check-css-vars.sh",
51
+ "check:prose": "scripts/check-prose-headings.sh",
50
52
  "size": "size-limit",
51
53
  "prepare": "husky"
52
54
  },