@imaginario27/air-ui-ds 1.13.3 → 1.13.4
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
|
@@ -5,6 +5,17 @@ All notable changes to this package are documented in this file.
|
|
|
5
5
|
Historical releases were reconstructed from git history (GitHub repository) and npm publish dates.
|
|
6
6
|
Future releases will include detailed entries generated with Changesets.
|
|
7
7
|
|
|
8
|
+
## 1.13.3 - 2026-05-21
|
|
9
|
+
|
|
10
|
+
Release type: patch.
|
|
11
|
+
Commits found in range: 1.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
1. merge InteractiveRating into Rating and add disabled option to DropdownSelect ([15a4b1c](https://github.com/imaginario27/air-ui/commit/15a4b1c8bdec9f54d5e733c0ab834aba40a1c50b))
|
|
16
|
+
|
|
17
|
+
- Package: @imaginario27/air-ui-ds.
|
|
18
|
+
|
|
8
19
|
## 1.13.2 - 2026-05-20
|
|
9
20
|
|
|
10
21
|
Release type: patch.
|
|
@@ -50,7 +50,10 @@
|
|
|
50
50
|
{{ featuredDescription }}
|
|
51
51
|
</p>
|
|
52
52
|
|
|
53
|
-
<p
|
|
53
|
+
<p
|
|
54
|
+
v-if="description"
|
|
55
|
+
:class="['text-sm', styleType === DashboardMetricCardStyle.DEFAULT ? 'text-text-neutral-subtle' : textColorClass]"
|
|
56
|
+
>
|
|
54
57
|
{{ description }}
|
|
55
58
|
</p>
|
|
56
59
|
</div>
|
|
@@ -106,10 +109,7 @@ const props = defineProps({
|
|
|
106
109
|
},
|
|
107
110
|
unit: String as PropType<string>,
|
|
108
111
|
featuredDescription: String as PropType<string>,
|
|
109
|
-
description:
|
|
110
|
-
type: String as PropType<string>,
|
|
111
|
-
default: "Metric description",
|
|
112
|
-
},
|
|
112
|
+
description: String as PropType<string>,
|
|
113
113
|
trend: String as PropType<string>,
|
|
114
114
|
trendDirection: {
|
|
115
115
|
type: String as PropType<DashboardMetricTrendDirection>,
|