@kiva/kv-components 4.3.2 → 4.3.3
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 +11 -0
- package/dist/components/KvSideSheet.vue +1 -1
- package/package.json +2 -2
- package/vue/KvSideSheet.vue +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.3.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.2...@kiva/kv-components@4.3.3) (2024-12-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* side sheet shouldn't be full height ([d7e680f](https://github.com/kiva/kv-ui-elements/commit/d7e680fe172a1776bd5cc97d99cbb32d988b7c55))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [4.3.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.1...@kiva/kv-components@4.3.2) (2024-12-16)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
@click.self="closeSideSheet"
|
|
11
11
|
>
|
|
12
12
|
<div
|
|
13
|
-
class="tw-absolute tw-right-0 tw-
|
|
13
|
+
class="tw-absolute tw-right-0 tw-transition-all tw-duration-300 tw-bg-white
|
|
14
14
|
tw-overflow-y-auto tw-p-2"
|
|
15
15
|
:class="{
|
|
16
16
|
'tw-w-0 tw-delay-200 tw-opacity-0': !open,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"peerDependencies": {
|
|
97
97
|
"vue": ">=3.0.0"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "9947b8a5d8bcfe549c154a92448e12f7ce5f3dc5"
|
|
100
100
|
}
|
package/vue/KvSideSheet.vue
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
@click.self="closeSideSheet"
|
|
11
11
|
>
|
|
12
12
|
<div
|
|
13
|
-
class="tw-absolute tw-right-0 tw-
|
|
13
|
+
class="tw-absolute tw-right-0 tw-transition-all tw-duration-300 tw-bg-white
|
|
14
14
|
tw-overflow-y-auto tw-p-2"
|
|
15
15
|
:class="{
|
|
16
16
|
'tw-w-0 tw-delay-200 tw-opacity-0': !open,
|