@faststore/ui 3.22.2 → 3.25.11

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": "@faststore/ui",
3
- "version": "3.22.2",
3
+ "version": "3.25.11",
4
4
  "description": "A lightweight, framework agnostic component library for React",
5
5
  "author": "emersonlaurentino",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  }
48
48
  ],
49
49
  "dependencies": {
50
- "@faststore/components": "^3.22.2",
50
+ "@faststore/components": "^3.25.11",
51
51
  "include-media": "^1.4.10",
52
52
  "modern-normalize": "^1.1.0",
53
53
  "react-swipeable": "^7.0.0",
@@ -69,5 +69,5 @@
69
69
  "volta": {
70
70
  "extends": "../../package.json"
71
71
  },
72
- "gitHead": "28cafe77e6b07fffd2c9820c2e11007502d3aea5"
72
+ "gitHead": "d30036f692b7ebcfd171f5b0b9a9e019cd83e4ad"
73
73
  }
@@ -39,8 +39,8 @@
39
39
  display: flex;
40
40
  flex-direction: column;
41
41
  align-items: flex-start;
42
- overflow: hidden;
43
42
  margin-top: var(--fs-spacing-0);
43
+ overflow: hidden;
44
44
  background: var(--fs-dropdown-menu-bkg-color);
45
45
  border-radius: var(--fs-dropdown-menu-border-radius);
46
46
  box-shadow: var(--fs-dropdown-menu-box-shadow);
@@ -50,7 +50,6 @@
50
50
  align-items: center;
51
51
  width: 100%;
52
52
  min-height: var(--fs-dropdown-item-min-height);
53
- padding: var(--fs-dropdown-item-padding);
54
53
  overflow: hidden;
55
54
  font-size: var(--fs-dropdown-item-text-size);
56
55
  font-weight: var(--fs-dropdown-item-text-weight);
@@ -67,9 +66,9 @@
67
66
  }
68
67
 
69
68
  &:focus, &:hover {
70
- text-decoration: none;
71
- background-color: var(--fs-dropdown-item-bkg-color-hover);
72
- outline: none;
69
+ text-decoration: none;
70
+ background-color: var(--fs-dropdown-item-bkg-color-hover);
71
+ outline: none;
73
72
  }
74
73
 
75
74
  [data-fs-dropdown-item-icon] {
@@ -77,6 +76,10 @@
77
76
  min-width: var(--fs-dropdown-item-icon-min-width);
78
77
  margin-right: var(--fs-dropdown-item-icon-margin-right);
79
78
  }
79
+
80
+ > a {
81
+ color: var(--fs-dropdown-item-color);
82
+ }
80
83
  }
81
84
 
82
85
  // --------------------------------------------------------
@@ -50,7 +50,7 @@
50
50
  }
51
51
 
52
52
  &[data-fs-navbar-scroll="down"] {
53
- > nav {
53
+ > [data-fs-navbar-links] {
54
54
  top: calc(-1 * var(--fs-spacing-3));
55
55
  height: 0;
56
56
  padding: 0;
@@ -59,7 +59,7 @@
59
59
  }
60
60
 
61
61
  &[data-fs-navbar-scroll="up"] {
62
- > nav {
62
+ > [data-fs-navbar-links] {
63
63
  top: 0;
64
64
  opacity: 1;
65
65
  }
@@ -175,22 +175,22 @@
175
175
  }
176
176
 
177
177
  [data-fs-cart-toggle] {
178
- display: none;
179
178
  right: 0;
179
+ display: none;
180
180
  }
181
181
  }
182
182
  }
183
183
 
184
184
  [data-fs-navbar-header] {
185
185
  z-index: var(--fs-z-index-top);
186
+ height: 100%;
186
187
  background-color: var(--fs-navbar-bkg-color);
187
188
  backdrop-filter: blur(10px);
188
- height: 100%;
189
189
  }
190
190
 
191
191
  [data-fs-navbar-logo] {
192
- height: 100%;
193
192
  align-self: stretch;
193
+ height: 100%;
194
194
 
195
195
  @include media("<notebook") {
196
196
  padding: var(--fs-spacing-1) 0 var(--fs-spacing-1) var(--fs-spacing-3);