@imaginario27/air-ui-ds 1.13.8 → 1.13.9
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,41 +5,58 @@ 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.8 - 2026-06-03
|
|
9
|
+
|
|
10
|
+
Release type: patch.
|
|
11
|
+
Commits found in range: 0.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
1. Historical release reconstructed from npm publish metadata (no package commits found in this publish window).
|
|
16
|
+
|
|
17
|
+
- Package: @imaginario27/air-ui-ds.
|
|
18
|
+
|
|
19
|
+
## 1.13.7 - 2026-06-03
|
|
20
|
+
|
|
21
|
+
Release type: patch.
|
|
22
|
+
Commits found in range: 0.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
1. Historical release reconstructed from npm publish metadata (no package commits found in this publish window).
|
|
27
|
+
|
|
28
|
+
- Package: @imaginario27/air-ui-ds.
|
|
29
|
+
|
|
8
30
|
## 1.13.6 - 2026-06-03
|
|
9
31
|
|
|
10
32
|
Release type: patch.
|
|
11
33
|
Commits found in range: 1.
|
|
12
34
|
|
|
13
|
-
###
|
|
35
|
+
### Added
|
|
14
36
|
|
|
15
|
-
1.
|
|
37
|
+
1. add accessibility attributes and fix typescript errors (#114) ([0b7bedb](https://github.com/imaginario27/air-ui/commit/0b7bedb6f9ae921a3422f8a0cbca471faadd7d42) (PR [#114](https://github.com/imaginario27/air-ui/pull/114)))
|
|
16
38
|
|
|
17
39
|
- Package: @imaginario27/air-ui-ds.
|
|
18
40
|
|
|
19
41
|
## 1.13.5 - 2026-06-03
|
|
20
42
|
|
|
21
43
|
Release type: patch.
|
|
22
|
-
Commits found in range:
|
|
44
|
+
Commits found in range: 1.
|
|
23
45
|
|
|
24
46
|
### Added
|
|
25
47
|
|
|
26
|
-
1.
|
|
27
|
-
2. make MetricCard description optional and rewrite README (#113) ([fe0e88a](https://github.com/imaginario27/air-ui/commit/fe0e88a59be6171a15d1bf7cb894f12319c3fd23) (PR [#113](https://github.com/imaginario27/air-ui/pull/113)))
|
|
28
|
-
|
|
29
|
-
### Fixed
|
|
30
|
-
|
|
31
|
-
1. resolve typescript errors in DropdownMenuItem and ModalDialog ([02e229b](https://github.com/imaginario27/air-ui/commit/02e229b9d6ddfa945f2817c726e3f555e079c6d4))
|
|
48
|
+
1. make MetricCard description optional and rewrite README (#113) ([fe0e88a](https://github.com/imaginario27/air-ui/commit/fe0e88a59be6171a15d1bf7cb894f12319c3fd23) (PR [#113](https://github.com/imaginario27/air-ui/pull/113)))
|
|
32
49
|
|
|
33
50
|
- Package: @imaginario27/air-ui-ds.
|
|
34
51
|
|
|
35
52
|
## 1.13.4 - 2026-05-26
|
|
36
53
|
|
|
37
54
|
Release type: patch.
|
|
38
|
-
Commits found in range:
|
|
55
|
+
Commits found in range: 0.
|
|
39
56
|
|
|
40
|
-
###
|
|
57
|
+
### Changed
|
|
41
58
|
|
|
42
|
-
1.
|
|
59
|
+
1. Historical release reconstructed from npm publish metadata (no package commits found in this publish window).
|
|
43
60
|
|
|
44
61
|
- Package: @imaginario27/air-ui-ds.
|
|
45
62
|
|
|
@@ -29,7 +29,7 @@ const props = defineProps({
|
|
|
29
29
|
},
|
|
30
30
|
titleClass: String as PropType<string>,
|
|
31
31
|
headingTag: {
|
|
32
|
-
type: String as PropType<
|
|
32
|
+
type: String as PropType<HeadingTag>,
|
|
33
33
|
default: 'h3',
|
|
34
34
|
validator: (value: string ) => ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].includes(value as string)
|
|
35
35
|
},
|
|
@@ -29,7 +29,7 @@ const props =defineProps({
|
|
|
29
29
|
},
|
|
30
30
|
titleClass: String as PropType<string>,
|
|
31
31
|
headingTag: {
|
|
32
|
-
type: String as PropType<
|
|
32
|
+
type: String as PropType<HeadingTag>,
|
|
33
33
|
default: 'h3',
|
|
34
34
|
validator: (value: string ) => ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].includes(value as string)
|
|
35
35
|
},
|
|
@@ -91,8 +91,8 @@ const props = defineProps({
|
|
|
91
91
|
Object.values(HeadingSpacing).includes(value as HeadingSpacing),
|
|
92
92
|
},
|
|
93
93
|
headingTag: {
|
|
94
|
-
type: String as PropType<
|
|
95
|
-
|
|
94
|
+
type: String as PropType<HeadingTag>,
|
|
95
|
+
required: true,
|
|
96
96
|
validator: (value: string ) => ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].includes(value as string)
|
|
97
97
|
},
|
|
98
98
|
isMobileCentered: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'
|