@imaginario27/air-ui-ds 1.14.1 → 1.14.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,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.14.1 - 2026-06-22
|
|
9
|
+
|
|
10
|
+
Release type: patch.
|
|
11
|
+
Commits found in range: 1.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
1. add transparent, isSticky, and grid layout props ([f730d67](https://github.com/imaginario27/air-ui/commit/f730d67ad16ecbf8610946a88728529f71a41c0a))
|
|
16
|
+
|
|
17
|
+
- Package: @imaginario27/air-ui-ds.
|
|
18
|
+
|
|
8
19
|
## 1.14.0 - 2026-06-16
|
|
9
20
|
|
|
10
21
|
Release type: minor.
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<header
|
|
2
|
+
<header
|
|
3
3
|
:class="[
|
|
4
|
-
isSticky &&
|
|
4
|
+
isSticky && `sticky top-0`,
|
|
5
5
|
]"
|
|
6
|
+
:style="isSticky ? { zIndex } : {}"
|
|
6
7
|
>
|
|
7
8
|
<slot name="top-header" />
|
|
8
9
|
|
|
@@ -70,6 +71,8 @@
|
|
|
70
71
|
:submenuDropdownClass
|
|
71
72
|
:submenuTrigger
|
|
72
73
|
:prefetchOn
|
|
74
|
+
:isSticky
|
|
75
|
+
:dropdownZIndex="zIndex"
|
|
73
76
|
:class="navMenuClass"
|
|
74
77
|
/>
|
|
75
78
|
|
|
@@ -87,6 +90,7 @@
|
|
|
87
90
|
class="min-w-[200px]"
|
|
88
91
|
:positionYOffset="submenuYOffset"
|
|
89
92
|
:isSticky
|
|
93
|
+
:zIndex="zIndex"
|
|
90
94
|
>
|
|
91
95
|
<template #activator>
|
|
92
96
|
<Avatar
|
|
@@ -119,6 +123,7 @@
|
|
|
119
123
|
:class="navMobileMenuClass"
|
|
120
124
|
:positionYOffset="submenuYOffset"
|
|
121
125
|
:isSticky
|
|
126
|
+
:zIndex="zIndex"
|
|
122
127
|
>
|
|
123
128
|
<template #activator>
|
|
124
129
|
<ActionIconButton
|
|
@@ -248,6 +253,10 @@ const props = defineProps({
|
|
|
248
253
|
type: String as PropType<string>,
|
|
249
254
|
default: 'min-w-[280px]'
|
|
250
255
|
},
|
|
256
|
+
zIndex: {
|
|
257
|
+
type: String as PropType<string>,
|
|
258
|
+
default: '50',
|
|
259
|
+
},
|
|
251
260
|
headerClass: String as PropType<string>,
|
|
252
261
|
sidebarOpenAriaLabel: {
|
|
253
262
|
type: String as PropType<string>,
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
:positionYOffset="submenuYOffset"
|
|
7
7
|
:trigger="submenuTrigger"
|
|
8
8
|
:dropdownClass="getDropdownClass(item)"
|
|
9
|
+
:isSticky
|
|
10
|
+
:zIndex="dropdownZIndex"
|
|
9
11
|
>
|
|
10
12
|
<template #activator="{ isOpen }">
|
|
11
13
|
<button
|
|
@@ -89,6 +91,14 @@ const props = defineProps({
|
|
|
89
91
|
type: [String, Object] as PropType<PrefetchOnStrategy>,
|
|
90
92
|
default: PrefetchOn.VISIBILITY,
|
|
91
93
|
},
|
|
94
|
+
isSticky: {
|
|
95
|
+
type: Boolean as PropType<boolean>,
|
|
96
|
+
default: false,
|
|
97
|
+
},
|
|
98
|
+
dropdownZIndex: {
|
|
99
|
+
type: String as PropType<string>,
|
|
100
|
+
default: '50',
|
|
101
|
+
},
|
|
92
102
|
})
|
|
93
103
|
|
|
94
104
|
// Composables
|