@awes-io/ui 2.130.1 → 2.131.0

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
+ # [2.131.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.130.1...@awes-io/ui@2.131.0) (2025-06-20)
7
+
8
+
9
+ ### Features
10
+
11
+ * change title in cards ([c78f36f](https://github.com/awes-io/client/commit/c78f36f4dcc405dc8cfe14baadf8765b133077ea))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.130.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.130.0...@awes-io/ui@2.130.1) (2025-06-02)
7
18
 
8
19
 
@@ -66,6 +66,7 @@
66
66
  &__title {
67
67
  font-family: theme('fontFamily.heading');
68
68
  font-size: 1rem;
69
+ font-weight: 700;
69
70
  margin: 0;
70
71
  display: inline-block;
71
72
  vertical-align: middle;
@@ -8,9 +8,9 @@
8
8
  >
9
9
  <div class="aw-card__title">
10
10
  <slot name="title">
11
- <AwSubHeadline class="my-0" :tag="titleTag">
11
+ <div class="font-bold" :tag="titleTag">
12
12
  {{ title }}
13
- </AwSubHeadline>
13
+ </div>
14
14
  </slot>
15
15
 
16
16
  <div class="aw-card__header-badge">
@@ -1,5 +1,11 @@
1
1
  <template>
2
- <AwCard :tag="tag" v-bind="$attrs" class="aw-island" :reset="tag === 'AwLink' ? true : null" v-on="$listeners">
2
+ <AwCard
3
+ :tag="tag"
4
+ v-bind="$attrs"
5
+ class="aw-island"
6
+ :reset="tag === 'AwLink' ? true : null"
7
+ v-on="$listeners"
8
+ >
3
9
  <!-- heading -->
4
10
  <template #header>
5
11
  <div
@@ -28,9 +34,9 @@
28
34
  }"
29
35
  >
30
36
  <slot name="title" v-bind="{ titleTag, isOpened, toggle }">
31
- <AwSubHeadline :tag="titleTag" class="aw-island__title">
37
+ <div :tag="titleTag" class="aw-island__title">
32
38
  {{ title }}
33
- </AwSubHeadline>
39
+ </div>
34
40
  </slot>
35
41
 
36
42
  <!-- After title slot -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.130.1",
3
+ "version": "2.131.0",
4
4
  "description": "User Interface (UI) components",
5
5
  "keywords": [
6
6
  "ui",
@@ -114,5 +114,5 @@
114
114
  "rollup-plugin-visualizer": "^2.6.0",
115
115
  "rollup-plugin-vue": "^5.0.1"
116
116
  },
117
- "gitHead": "cba45d245774b5125df14a0bad17eb92dbb8b6ac"
117
+ "gitHead": "b205d20df88343fa2a87f21c3d088a167f13fbf4"
118
118
  }