@kiva/kv-components 4.3.0 → 4.3.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
|
@@ -3,6 +3,29 @@
|
|
|
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.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
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* overflow fallback ([1cd05db](https://github.com/kiva/kv-ui-elements/commit/1cd05db96ccc96424e7c364fb49156acedb6d101))
|
|
12
|
+
* smooth out side sheet animation ([d65df74](https://github.com/kiva/kv-ui-elements/commit/d65df74824ef936fdcfc3f07870107a0676d194e))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [4.3.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.3.0...@kiva/kv-components@4.3.1) (2024-12-11)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* resolve issue when screen size is changed and opening behavior changes ([c51d62e](https://github.com/kiva/kv-ui-elements/commit/c51d62e6b2f4efaee4ddcb6efa33cfe9523fd69f))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
# [4.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@4.2.2...@kiva/kv-components@4.3.0) (2024-12-10)
|
|
7
30
|
|
|
8
31
|
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
>
|
|
12
12
|
<div
|
|
13
13
|
class="tw-absolute tw-right-0 tw-h-full tw-transition-all tw-duration-300 tw-bg-white
|
|
14
|
-
tw-overflow-
|
|
14
|
+
tw-overflow-y-auto tw-p-2"
|
|
15
15
|
:class="{
|
|
16
|
-
'tw-w-0 tw-
|
|
17
|
-
'lg:tw-w-1/2 tw-w-full tw-
|
|
16
|
+
'tw-w-0 tw-delay-200 tw-opacity-0': !open,
|
|
17
|
+
'lg:tw-w-1/2 tw-w-full tw-opacity-full': open,
|
|
18
18
|
}"
|
|
19
19
|
:style="modalStyles"
|
|
20
20
|
>
|
|
@@ -184,6 +184,8 @@ export default {
|
|
|
184
184
|
transition: 'all 0.5s ease-in-out',
|
|
185
185
|
};
|
|
186
186
|
}, 10);
|
|
187
|
+
} else {
|
|
188
|
+
modalStyles.value = {};
|
|
187
189
|
}
|
|
188
190
|
}
|
|
189
191
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.2",
|
|
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": "29c92acb642f33da757b1f896e2570ff67bc39d9"
|
|
100
100
|
}
|
package/vue/KvSideSheet.vue
CHANGED
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
>
|
|
12
12
|
<div
|
|
13
13
|
class="tw-absolute tw-right-0 tw-h-full tw-transition-all tw-duration-300 tw-bg-white
|
|
14
|
-
tw-overflow-
|
|
14
|
+
tw-overflow-y-auto tw-p-2"
|
|
15
15
|
:class="{
|
|
16
|
-
'tw-w-0 tw-
|
|
17
|
-
'lg:tw-w-1/2 tw-w-full tw-
|
|
16
|
+
'tw-w-0 tw-delay-200 tw-opacity-0': !open,
|
|
17
|
+
'lg:tw-w-1/2 tw-w-full tw-opacity-full': open,
|
|
18
18
|
}"
|
|
19
19
|
:style="modalStyles"
|
|
20
20
|
>
|
|
@@ -184,6 +184,8 @@ export default {
|
|
|
184
184
|
transition: 'all 0.5s ease-in-out',
|
|
185
185
|
};
|
|
186
186
|
}, 10);
|
|
187
|
+
} else {
|
|
188
|
+
modalStyles.value = {};
|
|
187
189
|
}
|
|
188
190
|
}
|
|
189
191
|
});
|