@imaginario27/air-ui-ds 1.7.0 → 1.7.2

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,28 @@ 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.7.1 - 2026-03-25
9
+
10
+ Release type: patch.
11
+ Commits found in range: 1.
12
+
13
+ ### Fixed
14
+
15
+ 1. remove inexisting description prop and replace it with separatorIcon prop ([4d5ad0a](https://github.com/imaginario27/air-ui/commit/4d5ad0a0a538e685ccfb40697c54a8c368732d0b))
16
+
17
+ - Package: @imaginario27/air-ui-ds.
18
+
19
+ ## 1.7.0 - 2026-03-25
20
+
21
+ Release type: minor.
22
+ Commits found in range: 1.
23
+
24
+ ### Added
25
+
26
+ 1. add ConfirmationDetailsCard and noWrap support ([a136530](https://github.com/imaginario27/air-ui/commit/a136530bd990cdfbe0afc0dbce7098d19a3d0b8e))
27
+
28
+ - Package: @imaginario27/air-ui-ds.
29
+
8
30
  ## 1.6.0 - 2026-03-24
9
31
 
10
32
  Release type: minor.
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <component
3
- :is="actionType === ButtonActionType.LINK ? NuxtLink : 'button'"
3
+ :is="actionType === ButtonActionType.LINK ? (disabled ? 'span' : NuxtLink) : 'button'"
4
4
  :id
5
5
  :type="actionType === ButtonActionType.ACTION ? type : undefined"
6
6
  :class="[
@@ -13,7 +13,8 @@
13
13
  gapClass,
14
14
  'self-start',
15
15
  isFullWidth && 'w-full',
16
- isMobileFullWidth && 'w-full md:w-auto'
16
+ isMobileFullWidth && 'w-full md:w-auto',
17
+ disabled && 'opacity-disabled cursor-not-allowed pointer-events-none',
17
18
  ]"
18
19
  v-bind="{
19
20
  ...componentProps,
@@ -32,7 +33,7 @@
32
33
  />
33
34
  </div>
34
35
 
35
- <span :class="['font-semibold', 'leading-none', textSizeClass, textClass]">
36
+ <span :class="['font-semibold', 'leading-none', 'select-none', textSizeClass, textClass]">
36
37
  {{ loadingText }}
37
38
  </span>
38
39
  </template>
@@ -52,7 +53,7 @@
52
53
  />
53
54
  </template>
54
55
 
55
- <span :class="['font-semibold', 'leading-none', textSizeClass, textClass]">
56
+ <span :class="['font-semibold', 'leading-none', 'select-none', textSizeClass, textClass]">
56
57
  {{ text }}
57
58
  </span>
58
59
 
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <component
3
- :is="actionType === ButtonActionType.LINK ? NuxtLink : 'button'"
3
+ :is="actionType === ButtonActionType.LINK ? (disabled ? 'span' : NuxtLink) : 'button'"
4
4
  :id
5
5
  :type="actionType === ButtonActionType.ACTION ? type : undefined"
6
6
  :class="[
@@ -9,6 +9,7 @@
9
9
  'aspect-square',
10
10
  ...buttonStyleClass,
11
11
  buttonSizeClass,
12
+ disabled && 'opacity-disabled cursor-not-allowed pointer-events-none',
12
13
  ]"
13
14
  v-bind="{
14
15
  ...componentProps,
@@ -20,7 +20,7 @@
20
20
  </span>
21
21
 
22
22
  <Icon
23
- name="mdi:chevron-right"
23
+ :name="separatorIcon"
24
24
  :iconClass="['text-icon-neutral-subtler', iconClass ?? '']"
25
25
  />
26
26
 
@@ -47,9 +47,9 @@ const props = defineProps({
47
47
  type: String as PropType<string>,
48
48
  default: 'Title',
49
49
  },
50
- description: {
50
+ separatorIcon: {
51
51
  type: String as PropType<string>,
52
- required: true,
52
+ default: 'mdi:chevron-right',
53
53
  },
54
54
  alignement: {
55
55
  type: String as PropType<Align>,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imaginario27/air-ui-ds",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "author": "imaginario27",
5
5
  "type": "module",
6
6
  "homepage": "https://air-ui.netlify.app/",