hds-web 1.25.9 → 1.26.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.25.9",
3
+ "version": "1.26.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -32,7 +32,7 @@ export default function V3Tab(props) {
32
32
  onClick={() => {
33
33
  handleTabClick(tab);
34
34
  }}
35
- className={`${activeTab === tab.name ? ' text-neutral-0 transition-all duration-300' : ' hover:bg-neutral-500/30 text-neutral-400'} relative px-3 py-1 whitespace-nowrap rounded-full hover:text-neutral-0`}
35
+ className={`${activeTab === tab.name ? ' text-neutral-0 delay-300' : ' hover:bg-neutral-500/30 text-neutral-400'} relative px-3 py-1 whitespace-nowrap rounded-full hover:text-neutral-0`}
36
36
  >
37
37
  {activeTab === tab.name && (
38
38
  <motion.div
@@ -7727,6 +7727,10 @@ select{
7727
7727
  transition-delay: 300ms;
7728
7728
  }
7729
7729
 
7730
+ .delay-100{
7731
+ transition-delay: 100ms;
7732
+ }
7733
+
7730
7734
  .duration-0{
7731
7735
  transition-duration: 0s;
7732
7736
  }