mountain-ui 1.0.106 → 1.0.107

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,7 +1,7 @@
1
1
  {
2
2
  "name": "mountain-ui",
3
3
  "private": false,
4
- "version": "1.0.106",
4
+ "version": "1.0.107",
5
5
  "description": "A comprehensive UI component library for ERP systems with field types, entities, and registry management built with Svelte",
6
6
  "type": "module",
7
7
  "module": "index.js",
@@ -123,7 +123,7 @@
123
123
  }
124
124
 
125
125
  .btn.active {
126
- background-color: var(--bg-2);
126
+ background-color: var(--bg-3);
127
127
  }
128
128
 
129
129
  .btn h5 {
@@ -158,6 +158,13 @@
158
158
  :global(.navbar.close) .btn:has( :global( svg)) h5.in {
159
159
  display: none;
160
160
  }
161
+ .btn :global(svg) {
162
+ transform: translateX(0px);
163
+ transition: transform .2s ease-out;
164
+ }
165
+ :global(.navbar.close) .btn :global(svg) {
166
+ transform: translateX(2px);
167
+ }
161
168
 
162
169
  :global(.navbar.open) .btn::after {
163
170
  user-select: none;
@@ -134,6 +134,14 @@
134
134
  min-height: max-content;
135
135
  }
136
136
 
137
+ .btn :global(svg) {
138
+ transform: translateX(0px);
139
+ transition: transform .2s ease-out;
140
+ }
141
+ :global(.navbar.close) .btn :global(svg) {
142
+ transform: translateX(2px);
143
+ }
144
+
137
145
  .full {
138
146
  display: flex;
139
147
  align-items: center;