mountain-ui 1.0.106 → 1.0.108
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.
|
|
4
|
+
"version": "1.0.108",
|
|
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-
|
|
126
|
+
background-color: var(--bg-3);
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.btn h5 {
|
|
@@ -158,6 +158,16 @@
|
|
|
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
|
+
}
|
|
168
|
+
:global(body:has(.navbar.close)) .full :global(svg) {
|
|
169
|
+
transform: translateX(2px);
|
|
170
|
+
}
|
|
161
171
|
|
|
162
172
|
:global(.navbar.open) .btn::after {
|
|
163
173
|
user-select: none;
|
|
@@ -134,6 +134,17 @@
|
|
|
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
|
+
:global(body:has(.navbar.close)) .full :global(svg) {
|
|
145
|
+
transform: translateX(2px);
|
|
146
|
+
}
|
|
147
|
+
|
|
137
148
|
.full {
|
|
138
149
|
display: flex;
|
|
139
150
|
align-items: center;
|