@kiva/kv-components 3.84.0 → 3.85.0

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,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
+ # [3.85.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.84.0...@kiva/kv-components@3.85.0) (2024-07-10)
7
+
8
+
9
+ ### Features
10
+
11
+ * carousel controls arrow added for aside version ([#423](https://github.com/kiva/kv-ui-elements/issues/423)) ([f1f8fb3](https://github.com/kiva/kv-ui-elements/commit/f1f8fb337b4a8ffb343e8341ce7a8d932805df1f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.84.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.83.2...@kiva/kv-components@3.84.0) (2024-07-08)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.84.0",
3
+ "version": "3.85.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -75,5 +75,5 @@
75
75
  "optional": true
76
76
  }
77
77
  },
78
- "gitHead": "5e75a9b1c10233bd13cd5b897dcbbb2990d03647"
78
+ "gitHead": "70ca09fb749daec6850f8eba2a97023a1b43f47c"
79
79
  }
@@ -48,7 +48,7 @@
48
48
  >
49
49
  <kv-material-icon
50
50
  class="tw-w-4"
51
- :icon="mdiChevronLeft"
51
+ :icon="asideControls? mdiArrowLeft : mdiChevronLeft"
52
52
  />
53
53
  <span class="tw-sr-only">Show previous slide</span>
54
54
  </button>
@@ -70,7 +70,7 @@
70
70
  >
71
71
  <kv-material-icon
72
72
  class="tw-w-4"
73
- :icon="mdiChevronRight"
73
+ :icon="asideControls ? mdiArrowRight : mdiChevronRight"
74
74
  />
75
75
  <span class="tw-sr-only">Show next slide</span>
76
76
  </button>