@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
- ### Fixed
35
+ ### Added
14
36
 
15
- 1. fix missing buttons aria labels ([bc608ad](https://github.com/imaginario27/air-ui/commit/bc608ad6db69062f28a67eeeed6c00b50529c3bd))
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: 3.
44
+ Commits found in range: 1.
23
45
 
24
46
  ### Added
25
47
 
26
- 1. add accessibility attributes across components ([766675d](https://github.com/imaginario27/air-ui/commit/766675db2deaa85576ed5799e9de62a5ea112c89))
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: 1.
55
+ Commits found in range: 0.
39
56
 
40
- ### Added
57
+ ### Changed
41
58
 
42
- 1. make MetricCard description prop optional ([53937fb](https://github.com/imaginario27/air-ui/commit/53937fbca5cb1e3f350effdcb36a6a20bc9c50c5))
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<'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>,
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<'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>,
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
  },
@@ -50,6 +50,7 @@
50
50
  :align="alignContent"
51
51
  :size="HeadingSize.MD"
52
52
  :isMobileCentered
53
+ headingTag="h1"
53
54
  />
54
55
 
55
56
  <p
@@ -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<'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>,
95
- default: 'h1',
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'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imaginario27/air-ui-ds",
3
- "version": "1.13.8",
3
+ "version": "1.13.9",
4
4
  "author": "imaginario27",
5
5
  "type": "module",
6
6
  "homepage": "https://air-ui.netlify.app/",