@kiva/kv-components 3.101.1 → 3.101.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 +12 -0
- package/package.json +2 -2
- package/vue/KvCarousel.vue +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [3.101.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.1...@kiva/kv-components@3.101.2) (2024-09-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* handle slide scale instead of img ([8758b9e](https://github.com/kiva/kv-ui-elements/commit/8758b9efccd3d40bf7420a2f808901c6f396d260))
|
|
12
|
+
* overflow ([59529e4](https://github.com/kiva/kv-ui-elements/commit/59529e4e8f8dbbf3b2a2ba413868911702bc95e9))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [3.101.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.0...@kiva/kv-components@3.101.1) (2024-09-05)
|
|
7
19
|
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.101.
|
|
3
|
+
"version": "3.101.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"optional": true
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "0809b0816e59caee0fd4618825e77e921edf7278"
|
|
87
87
|
}
|
package/vue/KvCarousel.vue
CHANGED
|
@@ -429,15 +429,15 @@ export default {
|
|
|
429
429
|
width: auto;
|
|
430
430
|
}
|
|
431
431
|
|
|
432
|
-
.cirle-slide.is-selected
|
|
432
|
+
.cirle-slide.is-selected {
|
|
433
433
|
opacity: 1;
|
|
434
|
-
transform: scale(1);
|
|
434
|
+
transform: scale(1.2);
|
|
435
435
|
max-width: 300px;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
-
.cirle-slide:not(.is-selected)
|
|
438
|
+
.cirle-slide:not(.is-selected) {
|
|
439
439
|
opacity: 0.5;
|
|
440
|
-
transform: scale(0.
|
|
440
|
+
transform: scale(0.7);
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
.circle-carousel {
|